사생활 보호 설정
https://gamjia.tistory.com
Updated News
Mini Rooms
답글수 [0]
What Friends Say
한마디로 표현해봐~
1촌평 관리
12919번 서울에서 김서방 찾기
GamJia 2023. 3. 21. 14:29
코딩테스트 연습 - Level 1 - 서울에서 김서방 찾기
https://programmers.co.kr/learn/courses/30/lessons/12919
#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); } } answer+="에 있다"; return answer; }