File size: 204 Bytes
4f2e460
 
 
 
9732da2
 
4f2e460
9732da2
 
1f72f4f
42a3dc3
1f72f4f
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr

def build(size=5):
    tot = size*size
    r=0
    while r<tot:
        ro=""
        for c in range(size):
            ro+=str(tot-c-r)        
        print(ro)
        r+=1
build()