Closed acagastya closed 5 years ago
You can play this version of the game here
Built with commit 2fe3dd3996259cd08b243b015ff147a918418a34
@acagastya create a file named constants.js
inside src/
directory. Inside that keep these constants
export const BOARD_SIZE_MIN = 4;
export const BOARD_SIZE_MAX = 10;
Also in the formula, instead of hardcoding 11
, use this formula
final_moves = moves * (BOARD_SIZE_MAX + 1 - board_size)
@itaditya Anything missing, or needs to be changed?
@acagastya everything looks great. Can you fix the merge conflicts? I'll merge after it ASAP
@itaditya Is the current build failing? These are the things I did:
Hey @acagastya the build failing is related to some other code, your code is working fine and so I have merged. Thanks for working on this. It was a lot of work and I'm so glad you completed it.
Oh, that sounds wonderful! I am glad I didn't break things beyond fixation. And I am thankful, I learned about how to extract parameters from the query. Thank you, @itaditya!
As mentioned in #51