implement tower shuffle

This commit is contained in:
2025-08-28 15:47:43 -05:00
parent 0b39710a78
commit 2ef80e8878
2 changed files with 82 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
from src.tower_shuffle import TowerShuffle
def test_tower_shuffle():
tower = TowerShuffle.new(19)
print(tower)
for _ in range(100):
tower.shuffle()
print(tower)