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