from __future__ import annotations
from LivinGrimoireCoreV2 import *
import random
class AlgDispenser:
# super class to output an algorithm out of a selection of algorithms
def __init__(self, *algorithms: Algorithm):
super().__init__()
self._algs: list[Algorithm] = []...