File size: 177 Bytes
4f2e460
 
 
 
aecba50
4f2e460
 
 
1f72f4f
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr

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