[CodingTest] Codility - 01
·
Algorithm
# you can write to stdout for debugging purposes, e.g.# print("this is a debug message")def solution(A, K): # 첫번째로 할 거 . 개수 0 일때, K 의 나머지값이 0일때 if (len_a:=len(A)) ==0 or (K:=(K%len_a)) == 0: return A # Implement your solution here else: return A[-K:] + A[:-K]An array A consisting of N integers is given. Rotation of the array means that each element is shifted right by o..