matrix / app.py
Omnibus's picture
Update app.py
42a3dc3 verified
raw
history blame
204 Bytes
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()