목록PS (94)
Partially Committed
https://programmers.co.kr/learn/courses/30/lessons/86051 코딩테스트 연습 - 없는 숫자 더하기 0부터 9까지의 숫자 중 일부가 들어있는 정수 배열 numbers가 매개변수로 주어집니다. numbers에서 찾을 수 없는 0부터 9까지의 숫자를 모두 찾아 더한 수를 return 하도록 solution 함수를 완성해주세요. programmers.co.kr visit 배열에 나온 숫자 인덱스에 마킹하고, 인덱스 되지 않은 숫자의 인덱스를 answer 에 저장하면 된다. #include #include using namespace std; int solution(vector numbers) { int answer = -1; int sum = 0; vector visit..
https://programmers.co.kr/learn/courses/30/lessons/64061 코딩테스트 연습 - 크레인 인형뽑기 게임 [[0,0,0,0,0],[0,0,1,0,3],[0,2,5,0,1],[4,2,4,4,2],[3,5,1,3,1]] [1,5,3,5,1,2,1,4] 4 programmers.co.kr move 배열에 담긴 순서대로 인형을 stack 에 담는데, 넣을 인형과 stack 의 top 이 같다면 새로운 인형을 push 하지 않고 stack 의 top 을 pop 한 뒤, answer 을 2 씩 더해주면 된다. #include #include #include using namespace std; int solution(vector board, vector moves) { int ..
https://programmers.co.kr/learn/courses/30/lessons/67256 코딩테스트 연습 - 키패드 누르기 [1, 3, 4, 5, 8, 2, 1, 4, 5, 9, 5] "right" "LRLLLRLLRRL" [7, 0, 8, 2, 8, 3, 1, 5, 7, 6, 2] "left" "LRLLRRLLLRR" [1, 2, 3, 4, 5, 6, 7, 8, 9, 0] "right" "LLRLLRLLRL" programmers.co.kr #include #include using namespace std; string solution(vector numbers, string hand) { string answer = ""; string temp = ""; int latest_left =..
https://programmers.co.kr/learn/courses/30/lessons/81301 코딩테스트 연습 - 숫자 문자열과 영단어 네오와 프로도가 숫자놀이를 하고 있습니다. 네오가 프로도에게 숫자를 건넬 때 일부 자릿수를 영단어로 바꾼 카드를 건네주면 프로도는 원래 숫자를 찾는 게임입니다. 다음은 숫자의 일부 자 programmers.co.kr 위 관계를 Key(숫자) - value(영단어) 라고 생각하고 map 에 저장한다. string s 를 순회하는데, digit 이면 answer 에 push_back 해주고, digit 이 아니면 temp 에 저장한다. 그리고 temp 와 map 의 value 를 비교해서 일치한다면 key 값을 ans 에 push_back 해주면 된다. #includ..