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

[코딩테스트 Lv.0] 첫 번째로 나오는 음수

by 블루데이제이 2025. 3. 11.
728x90
반응형
문제 설명

정수 리스트 num_list가 주어질 때, 첫 번째로 나오는 음수의 인덱스를 return하도록 solution 함수를 완성해주세요. 음수가 없다면 -1을 return합니다.

제한사항
5 ≤ num_list의 길이 ≤ 100
-10 ≤ num_list의 원소 ≤ 100
입출력 예
num_list			result
[12, 4, 15, 46, 38, -2, 15]	5
[13, 22, 53, 24, 15, 6]		-1
입출력 설명
입출력 예 #1
5번 인덱스에서 음수가 처음 등장하므로 5를 return합니다.

입출력 예 #2
음수가 없으므로 -1을 return합니다.

내 풀이
Java
class Solution {
    public int solution(int[] num_list) {
        int answer = -1;
        
        for(int i = 0; i < num_list.length; i++){
            if(num_list[i] < 0) return i;
        }
        
        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 answer = -1;
    
    int i;
    for(i = 0; i < num_list_len; i++){
        if(num_list[i] < 0) return i;
    }
    
    return answer;
}
Python
def solution(num_list):
    answer = -1
    
    for i in range(len(num_list)):
        if num_list[i] < 0:
            return i
    
    return answer

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

 

프로그래머스

SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프

programmers.co.kr

 

 

728x90
반응형