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