'프로그래머스' 태그의 글 목록 (5 Page)
프로그래머스 k번째 수
https://programmers.co.kr/learn/courses/30/lessons/42748 코딩테스트 연습 - K번째수 [1, 5, 2, 6, 3, 7, 4] [[2, 5, 3], [4, 4, 1], [1, 7, 3]] [5, 6, 3] programmers.co.kr 1번 소스 #include #include #include #include using namespace std; vector solution(vector array, vector commands) { vector answer; for (int ci= 0; ci < commands.size(); ci++) { int i = commands[ci][0]; int j = commands[ci][1]; int k = commands[c..
2020. 8. 20.