File size: 201 Bytes
4f2e460
 
 
 
9732da2
 
4f2e460
9732da2
05b6dd1
cf83d76
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+=f' {tot-c-r}'
            r+=1
        print(ro)
build()