matrix / app.py
Omnibus's picture
Update app.py
05b6dd1 verified
raw
history blame
197 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+=1
build()