Open
Conversation
reneemeyer
suggested changes
Apr 10, 2018
| //the above movePiece function just makes the game functional, and lets you move pieces around. It allows for the removal of the last item in the first array, or the array you want to pull from (or startStack, in this case), through popping it off the end, and pushing it to the endStack, which could be stack b or c (or a, depending on what stack you're trying to move to/from). However, this function does not ensure legality of moves or order in the arrays. It simply allows the user to pop the last value off their targeted array and move it into a different array (or stack, in this case). | ||
|
|
||
| const validIput = (startStack, endStack) => { | ||
| if ((startStack === 'a') && (endStack === 'b' || endStack === 'c')) { |
| let movingPieceValue = stacks[startStack][stacks[startStack].length - 1]; | ||
| let endPieceValue = stacks[endStack][stacks[endStack].length - 1]; | ||
|
|
||
| if ((movingPieceValue < endPieceValue) || (stacks[endStack].length === 0)) { |
| function towersOfHanoi(startStack, endStack) { | ||
| // Your code here | ||
| const checkForWin = () => { | ||
| if (stacks.c.length === 4) { |
There was a problem hiding this comment.
simplify. Just return the evaluation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
checkpoint 1: Towers of Hannoi