NickColley / scrambo

Puzzle Scramble Generator
26 stars 5 forks source link

type('222') returns '333' scramble #41

Open gHashFlyer opened 2 years ago

gHashFlyer commented 2 years ago

It appears that the 2x2 scramble is a 3x3 scramble. In my example below they both return a similar-length scramble. The 2x2 should be shorter?

const cube3x3 = new Scrambo().type('333').seed(22223).get(1); console.log(cube3x3); returns: L2 U L2 B R' B' D F' D2 F2 U B2 U B R D L' U2 R' F

const cube2x2 = new Scrambo().type('222').seed(22223).get(1); console.log(cube2x2;) returns: F' R' U F2 R' U2 F' R U2 R' U' R F' U R2 F2 U' R' F' U'

cohenerickson commented 2 years ago

@NickColley Any update on this? I am having the same issue.