You are viewing a single comment's thread. Return to all comments →
Why isn't this code accepted :
def work(l, last) : print(l,end=last) n = int(input()) for i in range(n) : for j in range(i+1) : work(j+1,"") for k in range(i) : work(i-k,"") work("", "\n")
Seems like cookies are disabled on this browser, please enable them to open this website
Triangle Quest 2
You are viewing a single comment's thread. Return to all comments →
Why isn't this code accepted :