inblog logo
|
stupefyee
    알고리즘문제풀기

    [JAVA 문제 풀이] 202. 정수 찾기

    프로그래머스 (181840)
    Stupefyee's avatar
    Stupefyee
    Apr 15, 2025
    [JAVA 문제 풀이] 202. 정수 찾기
    Contents
    내가 작성한 코드
    school.programmers.co.kr
    https://school.programmers.co.kr/learn/courses/30/lessons/181840
    notion image
     

    내가 작성한 코드

    class Solution { public int solution(int[] num_list, int n) { for(int num : num_list) { if(num == n) { return 1; } } return 0; } }
    Share article
    Contents
    내가 작성한 코드

    stupefyee

    RSS·Powered by Inblog