Posts [알고리즘] 프로그래머스 - 서울에서 김서방 찾기
Post
Cancel

[알고리즘] 프로그래머스 - 서울에서 김서방 찾기


문제

서울에서 김서방 찾기


접근

배열 순회 문제


코드

  • C++ 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <string>
#include <vector>

using namespace std;

string solution(vector<string> seoul) {
    string answer = "김서방은 ";
    for(int i = 0; i<seoul.size(); i++){
        if(seoul[i] == "Kim"){
            answer += to_string(i);
            break;
        }
    }
    answer += "에 있다";
    return answer;
}
  • 파이썬 코드
1
2
3
4
5
6
7
8
def solution(seoul):
    answer = '김서방은 '
    for i, item in enumerate(seoul):
        if item == 'Kim':
            answer += str(i)
            break
    answer += '에 있다'
    return answer


This post is licensed under CC BY 4.0 by the author.

[알고리즘] 프로그래머스 - K번째수

[알고리즘] 프로그래머스 - 문자열을 정수로 바꾸기