[Codility(코딜리티)] Lesson2. OddOccurrencesInArray (100%)
Lesson 2 Arrays - OddOccurrencesInArray (Java Solution) app.codility.com/programmers/lessons/2-arrays/odd_occurrences_in_array/ OddOccurrencesInArray coding task - Learn to Code - Codility Find value that occurs in odd number of elements. app.codility.com 문제 홀수개의 배열 A가 주어진다 예를 들면, A = {9,3,9,3,9,7,9} 여기서 9는 4개, 3은 2개, 7은 1개이다 짝이 없는 숫자를 출력하면 된다 즉, 7이 정답이다 해결 Map을 하나 만든 후, 배열의 값을 Key로 하여 개수를 Value..
2020. 9. 7.
[Codility(코딜리티)] Lesson2. CyclicRotation (100%)
Lesson 2 Arrays - CyclicRotation (Java Solution) https://app.codility.com/programmers/lessons/2-arrays/cyclic_rotation/ CyclicRotation coding task - Learn to Code - Codility Rotate an array to the right by a given number of steps. app.codility.com 문제 정수들로 구성된 배열 A[] 들이 주어진다. 그리고 K가 주어지는데, K만큼 오른쪽으로 shift 하는 문제이다. 배열의 가장 마지막 인덱스의 숫자는 맨 앞으로 온다. 예를들어 A=[3,8,9,7,6], K=3 이면, [3, 8, 9, 7, 6] -> [6, 3,..
2020. 9. 6.