Created
September 16, 2020 10:51
-
-
Save dqureshiumar/11c31232e776a367dcc5f945d944a1b5 to your computer and use it in GitHub Desktop.
Codechef September Challenge 2020 Div 2 - Ada Matrix Problem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cook your dish here | |
T = int(input()) | |
# Test Cases Iteration | |
for __ in range(T): | |
N = int(input()) | |
listi = [] | |
i,j = 0,0 | |
cntt = 0 | |
count_on_me = 0 | |
#Accept Two Dimensional List in Python | |
for _ in range(N): | |
listi.append(list(map(int, input().split()))) | |
first_list = listi[0] | |
L = N-1 | |
j = N | |
# Transpose the Matrix if the numbers are not in the perfect position and keep a count | |
while(j > 0): | |
if first_list[L] != j: | |
listi = [[listi[j][i] for j in range(N)] for i in range(N)] | |
cntt += 1 | |
first_list = listi[0] | |
j -= 1 | |
L -= 1 | |
print(cntt) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment