matrix / app.py
Omnibus's picture
Update app.py
d564260 verified
raw
history blame
213 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}'
print(ro)
r+=size
build()