My issue
i got the approach right but i guess the test cases are wrong can you guys please check it
My code
n=int(input())
for i in range (n):
n1=int(input())
a=(10**(n1-1))
b=(10**n1)
for j in range(a,b):
if(j%3==0 and j%9!=0 and j%2!=0):
print(j)
break
Learning course: Jump from 2* to 3*
Problem Link: Make it Divisible Practice Problem in Jump from 2* to 3* - CodeChef