728x90
반응형
문제
코드
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> num_list) {
int answer = -1;
int count = 0;
for(int n : num_list)
{
if(n < 0)
{
return count;
}
count++;
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 배열 만들기 3 (0) | 2023.11.09 |
---|---|
[프로그래머스/C++] Lv.0 리스트 자르기 (0) | 2023.11.09 |
[프로그래머스/C++] Lv.0 가까운 1 찾기 (0) | 2023.11.08 |
[프로그래머스/C++] Lv.0 카운트 다운 (0) | 2023.11.07 |
[프로그래머스/C++] Lv.0 글자 지우기 (0) | 2023.11.07 |