Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ar08
/
zzz
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
zzz
/
evaluation
/
regression
/
cases
/
node-cli-rewrite
/
start
/
commands
/
scramble.py
ar08
Upload 1040 files
246d201
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
122 Bytes
import
random
def
scramble_string
(
s
):
s_list =
list
(s)
random.shuffle(s_list)
return
''
.join(s_list)