mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-01-08 22:38:05 -05:00
* docs(docs): start implementing docs website * update video url * add autogenerated codebase docs for backend * precommit * update links * fix config and video * gh actions * rename * workdirs * path * path * fix doc1 * redo markdown * docs * change main folder name * simplify readme * add back architecture * Fix lint errors * lint * update poetry lock --------- Co-authored-by: Jim Su <jimsu@protonmail.com>
8 lines
115 B
Python
8 lines
115 B
Python
import random
|
|
|
|
|
|
def scramble_string(s):
|
|
s_list = list(s)
|
|
random.shuffle(s_list)
|
|
return ''.join(s_list)
|