목록분류 전체보기 (145)
Partially Committed
https://programmers.co.kr/learn/courses/30/lessons/70128 코딩테스트 연습 - 내적 길이가 같은 두 1차원 정수 배열 a, b가 매개변수로 주어집니다. a와 b의 내적을 return 하도록 solution 함수를 완성해주세요. 이때, a와 b의 내적은 a[0]*b[0] + a[1]*b[1] + ... + a[n-1]*b[n-1] 입니다. (n은 a, b의 programmers.co.kr 말 그대로 두 1차원 벡터가 주어졌을 때 내적값을 반환하면 된다. #include #include using namespace std; int solution(vector a, vector b) { int answer = 1234567890; int pdc = 0; for (in..
https://programmers.co.kr/learn/courses/30/lessons/76501 코딩테스트 연습 - 음양 더하기 어떤 정수들이 있습니다. 이 정수들의 절댓값을 차례대로 담은 정수 배열 absolutes와 이 정수들의 부호를 차례대로 담은 불리언 배열 signs가 매개변수로 주어집니다. 실제 정수들의 합을 구하여 re programmers.co.kr absolute 배열을 순회하면서 sign 배열을 확인하고 true 면 더하고 false 면 빼서 answer 에 저장한다. #include #include using namespace std; int solution(vector absolutes, vector signs) { int answer = 123456789; int sum = ..
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 ..