209.number slide
とりあえず72byte。
i=j=1;l=input() while j<=l: for h in range(i):print j,;j+=1 i+=1;print
追記:
Code Golfing Tips(Python)を参考に短縮。62byte。
i=j=1;l=input() while j<=l:exec('print j,;j+=1;'*i);i+=1;print
とりあえず72byte。
i=j=1;l=input() while j<=l: for h in range(i):print j,;j+=1 i+=1;print
追記:
Code Golfing Tips(Python)を参考に短縮。62byte。
i=j=1;l=input() while j<=l:exec('print j,;j+=1;'*i);i+=1;print