Skip to content

Instantly share code, notes, and snippets.

View dqureshiumar's full-sized avatar
🎯
Focusing

Umar Qureshi dqureshiumar

🎯
Focusing
View GitHub Profile
@dqureshiumar
dqureshiumar / adamatrix.py
Created September 16, 2020 10:51
Codechef September Challenge 2020 Div 2 - Ada Matrix Problem
# 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