Refactor CaesarCipher

This commit is contained in:
EduardDurech 2025-02-09 05:15:12 +00:00
parent 23aa6ca7e7
commit 5279ccf7e1
8 changed files with 513 additions and 159 deletions

View file

@ -1,5 +1,5 @@
from .algebra import *
# from .algorithmic import *
from .algorithmic import *
from .arithmetic import *
# from .code import *
# from .cognition import *
@ -11,9 +11,7 @@ from .arithmetic import *
# Re-export all Curriculum classes
__all__ = []
for module in [
arithmetic,
algebra,
# algorithmic, arithmetic, code,
# cognition, games, geometry, graphs, logic
algebra, algorithmic, arithmetic,
# code, cognition, games, geometry, graphs, logic
]:
__all__.extend([name for name in module.__all__ if name.endswith('Curriculum')])