Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Omnibus
/
matrix
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cf83d76
matrix
/
app.py
Omnibus
Update app.py
cf83d76
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
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()