-
Level 1> 서울에서 김서방 찾기프로그래머스(Programmers) 2018. 8. 8. 16:29반응형
https://programmers.co.kr/learn/courses/30/lessons/12919
1. 문제
2. 알고리즘
키워드 - 구현, 문자열
3. 코드
1234567891011121314151617181920212223#include <string>#include <vector>using namespace std;string solution(vector<string> seoul) {string answer = "";const int size = seoul.size();int cand = 0;for(int i=0; i<size; i++) {if(seoul[i] == "Kim") {cand = i;break;}}answer += "김서방은 ";answer += to_string(cand);answer += "에 있다";return answer;}cs 반응형'프로그래머스(Programmers)' 카테고리의 다른 글
순열 검사 (0) 2018.08.20 Level 2 > 땅따먹기 (0) 2018.08.20 Level 1 > 문자열 다루기 기본 (0) 2018.08.08 Level 1 > 문자열 내림차순으로 배치하기 (0) 2018.08.08 Level 1> 문자열 내 p와 y의 개수 (0) 2018.08.08