티스토리 뷰
title: "서울에서 김서방 찾기"
category: 프로그래머스[Level-1]
tags: [C++, JavaScript, 프로그래머스]
date: "2021-01-20"
문제 링크
C++
#include <string>
#include <vector>
using namespace std;
string solution(vector<string> seoul) {
string answer = "";
answer += "김서방은 ";
for(int i=0; i<seoul.size(); i++){
if(seoul[i] != "Kim") continue;
answer += to_string(i);
break;
}
answer += "에 있다";
return answer;
}
JavaScript
function solution(seoul) {
var answer = "";
answer += "김서방은 " + seoul.indexOf("Kim") + "에 있다";
return answer;
}
728x90
반응형
'Programmers Solutions > Level-1' 카테고리의 다른 글
[프로그래머스] 문자열을 정수로 바꾸기 (0) | 2021.02.02 |
---|---|
[프로그래머스] 소수 찾기 (0) | 2021.02.02 |
[프로그래머스] 문자열 다루기 기본 (0) | 2021.02.02 |
[프로그래머스] 문자열 내림차순으로 배치하기 (0) | 2021.02.01 |
[프로그래머스] 문자열 내의 p와 y의 개수 (0) | 2021.02.01 |
댓글