Skip to content

Commit

Permalink
Log solution moves
Browse files Browse the repository at this point in the history
  • Loading branch information
simonkellly committed May 21, 2024
1 parent 8115676 commit 8279071
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/timer/timerStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ export const useCubeTimer = () => {
);

const times = cubeTimestampLinearFit(diff);
const solution = diff.map(move => move.move).join(' ');
const solution = diff.map(move => move.move);

console.log('Solution:', solution.join(' '));

const algs = await extractAlgs(solution);

Expand Down

0 comments on commit 8279071

Please sign in to comment.