mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-04-29 03:00:45 -04:00
* Move regression tests to evaluation/ * use pythnon instead of docker in the script * add model para * change python to python3 * bug fix
6 lines
113 B
Python
6 lines
113 B
Python
import random
|
|
def scramble_string(s):
|
|
s_list = list(s)
|
|
random.shuffle(s_list)
|
|
return ''.join(s_list)
|