mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-23 16:23:00 +00:00
Jörn-Michael Miehe
af00dafb6c
apparently, a @staticmethod that Depends on another @staticmethod in the same class is bad
28 lines
738 B
Python
28 lines
738 B
Python
import itertools
|
|
import random
|
|
from typing import Any, Self, Sequence
|
|
|
|
from .config import Config
|
|
|
|
|
|
class Random(random.Random):
|
|
@classmethod
|
|
async def get(cls, bonus_salt: Any = "") -> Self:
|
|
cfg = await Config.get_config()
|
|
return cls(f"{cfg.puzzle.solution}{cfg.puzzle.random_pepper}{bonus_salt}")
|
|
|
|
|
|
async def shuffle(seq: Sequence, rnd: random.Random | None = None) -> list:
|
|
# Zufallsgenerator
|
|
rnd = rnd or await Random.get()
|
|
|
|
# Elemente mischen
|
|
return rnd.sample(seq, len(seq))
|
|
|
|
|
|
def set_len(seq: Sequence, length: int) -> list:
|
|
# `seq` unendlich wiederholen
|
|
infinite = itertools.cycle(seq)
|
|
|
|
# Die ersten `length` einträge nehmen
|
|
return list(itertools.islice(infinite, length))
|