Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
568 changes: 568 additions & 0 deletions README_CUBE_FOUNDATION.md

Large diffs are not rendered by default.

594 changes: 594 additions & 0 deletions README_SOLVER.md

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions cube/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
"""
Rubik's Cube State Representation and Move Engine.

This package provides a mathematically correct, well-tested implementation
of Rubik's Cube state and transformations.

Modules:
state: CubeState class using 54-sticker representation
moves: Pure move transformations with mathematical guarantees
"""

from .state import CubeState
from .moves import apply_move, apply_sequence, invert_move, invert_sequence

__all__ = [
'CubeState',
'apply_move',
'apply_sequence',
'invert_move',
'invert_sequence',
]
Loading