N. P. O'Donnell, 2023
On Linux, Hold ctrl
+ shift
+ u
at the same time, release all 3, then type the 4 hex characters of the character you'd like.
# N. P. O'Donnell, 2024 | |
from typing import Iterator | |
def generate_combinations(elements: list[any], count: int) -> Iterator[list[int]]: | |
""" | |
Non-recursive generation of combinations. | |
:param elements: Elements from which to make combinations. |