rubiks-cube-solver
3x3x3
Takes a string representing a Rubik's Cube state as input and outputs a string of Rubik's Cube notations for the solution, following the Fridrich Method.
const solver = require('rubiks-cube-solver');
let cubeState = [
'flulfbddr', // front
'rudrruddl', // right
'dbbburrfb', // up
'llffdrubf', // down
'rludlubrf', // left
'lubfbfudl' // back
].join('');
let solveMoves = solver(cubeState);
let options = { partitioned: false };
console.log(solveMoves, options);
partitioned
booleanReturns an object with the four phases as keys (cross
, f2l
, oll
, pll
) and a string or array of strings for their solve moves.
The cross
and f2l
keys each point to an array of 4 strings -- the moves to get each cross edge and f2l pair into place.
The oll
and pll
keys each point to an algorithm string.
A cube state is a string containing a total of (6 faces) * (9 colors per face) = 54 characters, with no spaces. Each character represents the "color" for your chosen orientation (more on this below), and must be one of these 6: f
, r
, u
, d
, l
, b
. Instead of characters representing actual colors, like g
for green
, they represent the color of each face. The character r
stands for "the middle color on the right face".
There is a specific process you must follow to correctly turn a Rubik's Cube into a string.
Any orientation can work. This starting orientation will be the same as the one you must use for the outputted solution. For example, the official default orientation is when the front face is green, the up face is white, and the right face is red. (Each face can be identified by their middle color)
Go through all the faces in this order: front, right, up, down, left, back, and provide the colors on each face, in order. To provide colors in the correct order, you must orient the cube correctly for each face.
When providing colors for the front, right, back, and left faces, orient the cube such that that face is facing you and the up face (the up face that you chose for your orientation!) is facing upward.
When providing colors for the up face, orient the cube such that the up face is facing toward you and your chosen front face is facing down.
When providing colors for the down face, orient the cube such that the down face is facing toward you and your chosen front face is facing up.
Once you've oriented the cube correctly for each face, provide colors starting from the upper left, moving horizontally to the right, and ending up on the bottom right -- like reading a book.
If you have a Rubik's Cube in front of you, you can follow along! I will take a solved cube and make these moves (when the green face is facing toward you and the white face is facing up)
R' U L B U F L2 D R D U' R
...and then determine the cube state.
1) Orientation
2) Providing colors
green orange white orange green blue yellow yellow red
.flulfbddr
red white yellow red red white yellow yellow orange
. The state string for these colors is rudrruddl
.flulfbddrrudrruddl
yellow blue blue blue white red red green blue
which translates to dbbburrfb
.llffdrubf
.rludlubrf
.lubfbfudl
.Done! Now we just add them all up in order -- front right up down left back -- and our Rubik's Cube state becomes
flulfbddrrudrruddldbbburrfbllffdrubfrludlubrflubfbfudl
The solution to this is:
Cross:
Uprime F U B Uprime L U2 Lprime
Uprime R Uprime B U
F2L:
Dprime Bprime Dprime B Rprime
Dprime R D B D Bprime Dprime
B D Bprime Dprime B D Bprime
Fprime Dprime F D2 R Dprime
Rprime D2 R Dprime Rprime
OLL:
b D Bprime D B D2 bprime
PLL:
B2 dprime B Dprime B D Bprime
d B2 R Dprime Rprime Dprime
When making these moves, be sure to have the cube oriented in your chosen orientation from earlier.
This is a list of all the different notations, but I'll try to explain here as well.
There are notations for moving each face on a Rubik's Cube: either clockwise, counter-clockwise, or a 180 degree turn. For example, F
denotes a clockwise rotation of the front
face, F'
for a counter-clockwise rotation, and F2
for the 180 degree turn. Each face has their own notation: Front, Right, Up, Down, Left, Back. There are also notations for middle moves: M
, E
, and S
. I don't know why those letters are used.
Notation is case-sensitive: upper-case denotes a single-layer turn and lower-case denotes a double-layer turn. A double-layer turn is a turn of a middle slice on top of a single-layer turn (in the context of a 3x3x3). For example, the move r
is the same as R M'
and b'
is the same as B' S
. The middle moves M
, E
, and S
cannot be lower-case otherwise they would be ambiguous.
As an aside, official notation uses '
(apostrophe) to denote a counter-clockwise rotation, but since we're in JavaScript instead append prime
(e.g. replace R'
with Rprime
). Also, this solver does not recognize the moves X
, Y
, or Z
.