Skip to content

Commit

Permalink
feat: make the easy puzzle easier
Browse files Browse the repository at this point in the history
  • Loading branch information
komeilmehranfar committed Jun 14, 2024
1 parent 096c753 commit ecbd643
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,10 @@ export const isHardEnough = (
export const getRemovalCountBasedOnDifficulty = (difficulty: Difficulty) => {
switch (difficulty) {
case DIFFICULTY_EASY:
return BOARD_SIZE * BOARD_SIZE - 30;
return BOARD_SIZE * BOARD_SIZE - 38;
case DIFFICULTY_MEDIUM:
return BOARD_SIZE * BOARD_SIZE - 30;
case DIFFICULTY_HARD:
return BOARD_SIZE * BOARD_SIZE - 20;
default:
return BOARD_SIZE * BOARD_SIZE - 17;
Expand Down

0 comments on commit ecbd643

Please sign in to comment.