본문 바로가기
코딩테스트/프로그래머스 기초

[코딩테스트 Lv.0] 정수 찾기

by 블루데이제이 2024. 5. 27.
728x90
반응형
문제 설명

정수 리스트 num_list와 찾으려는 정수 n이 주어질 때, num_list안에 n이 있으면 1을 없으면 0을 return하도록 solution 함수를 완성해주세요.

제한사항
3 ≤ num_list의 길이 ≤ 100
1 ≤ num_list의 원소 ≤ 100
1 ≤ n ≤ 100
입출력 예
num_list		n	result
[1, 2, 3, 4, 5]		3	1
[15, 98, 23, 2, 15]	20	0
입출력 설명
입출력 예 #1
[1, 2, 3, 4, 5] 안에 3이 있으므로 1을 return합니다.

입출력 예 #2
[15, 98, 23, 2, 15] 안에 20이 없으므로 0을 return합니다.

내 풀이
Java
class Solution {
    public int solution(int[] num_list, int n) {
        int answer = 0;
        
        for(int i = 0; i < num_list.length; i++){
            if(num_list[i] == n) return 1;
        }
        
        return answer;
    }
}
C
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>

// num_list_len은 배열 num_list의 길이입니다.
int solution(int num_list[], size_t num_list_len, int n) {
    int answer = 0;
    int i;
    for(i = 0; i < num_list_len; i++){
        if(num_list[i] == n) return 1;
    }
    return answer;
}
Python
def solution(num_list, n):
    answer = 0
    
    if n in num_list:
        return 1
    
    return answer

https://school.programmers.co.kr/learn/courses/30/lessons/181840

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

728x90
반응형