Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kryzet committed Dec 2, 2024
1 parent c18c688 commit 1059395
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions project_3x3_rubik_solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,6 @@ void exterior_face(bool top_face) {
}
}

<<<<<<< Updated upstream

// Cube moves
void move_x(const bool PRIME) {
Expand Down Expand Up @@ -691,8 +690,6 @@ void move_z(const bool PRIME) {
}


=======
>>>>>>> Stashed changes
// Face moves
void moveU() {
array<char, N_COLS> temp;
Expand Down Expand Up @@ -796,16 +793,16 @@ void moveB2() { moveB(); moveB(); }
void moveL2() { moveL(); moveL(); }
void moveR2() { moveR(); moveR(); }

// Algorithm sequences
// Move sequences
void rightySequence() {
moveR(); moveU(); moveRPrime(); moveUPrime();
}

void leftyAlg() {
void leftySequence() {
moveL(); moveUPrime(); moveLPrime(); moveU();
}

void reverserightyAlg() {
void reverseRightySequence() {
moveUPrime(); moveRPrime(); moveU(); moveR();
}

Expand Down

0 comments on commit 1059395

Please sign in to comment.