Adds shuffle/scramble to list_utils.
authorScott Gasch <[email protected]>
Fri, 25 Mar 2022 16:15:08 +0000 (09:15 -0700)
committerScott Gasch <[email protected]>
Fri, 25 Mar 2022 16:15:08 +0000 (09:15 -0700)
list_utils.py
string_utils.py

index 91af8f9eb924fb7e7e04932d58a1bcb6eded0690..7f28ade922a4b733ee29ea0c68bc957ff587c51b 100644 (file)
@@ -2,9 +2,10 @@
 
 """Some useful(?) utilities for dealing with Lists."""
 
+import random
 from collections import Counter
 from itertools import islice
-from typing import Any, Iterator, List, Sequence, Tuple
+from typing import Any, Iterator, List, MutableSequence, Sequence, Tuple
 
 
 def shard(lst: List[Any], size: int) -> Iterator[Any]:
@@ -232,6 +233,30 @@ def _permute(seq: str, path: str):
         yield from _permute(cdr, path + car)
 
 
+def shuffle(seq: MutableSequence[Any]) -> MutableSequence[Any]:
+    """Shuffles a sequence into a random order.
+
+    >>> random.seed(22)
+    >>> shuffle([1, 2, 3, 4, 5])
+    [3, 4, 1, 5, 2]
+
+    >>> shuffle('example')
+    'empaelx'
+
+    """
+    if isinstance(seq, str):
+        import string_utils
+
+        return string_utils.shuffle(seq)
+    else:
+        random.shuffle(seq)
+        return seq
+
+
+def scramble(seq: MutableSequence[Any]) -> MutableSequence[Any]:
+    return shuffle(seq)
+
+
 def binary_search(lst: Sequence[Any], target: Any, *, sanity_check=False) -> Tuple[bool, int]:
     """Performs a binary search on lst (which must already be sorted).
     Returns a Tuple composed of a bool which indicates whether the
index 37851e04e7e5cba26ea0ac6032635e3ca5bfa2ed..08995765411a22bf5272bdae4bdee41b20312bc0 100644 (file)
@@ -971,6 +971,10 @@ def shuffle(in_str: str) -> str:
     return from_char_list(chars)
 
 
+def scramble(in_str: str) -> str:
+    return shuffle(in_str)
+
+
 def strip_html(in_str: str, keep_tag_content: bool = False) -> str:
     """
     Remove html code contained into the given string.