summaryrefslogtreecommitdiff
path: root/list_utils.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-03-25 09:15:08 -0700
committerScott Gasch <[email protected]>2022-03-25 09:15:08 -0700
commitc6fca944b41f292b66efaba27ebf3fd0a37956b8 (patch)
tree8051b1cbf733e413a48cd1faad544bbb2008626b /list_utils.py
parent0a449b165cc07b584e4467ff55a3ed16ca53fff0 (diff)
Adds shuffle/scramble to list_utils.
Diffstat (limited to 'list_utils.py')
-rw-r--r--list_utils.py27
1 files changed, 26 insertions, 1 deletions
diff --git a/list_utils.py b/list_utils.py
index 91af8f9..7f28ade 100644
--- a/list_utils.py
+++ b/list_utils.py
@@ -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