Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(hanoi): create exercise #448

Open
wants to merge 21 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
2caf310
feat/ generate exercise
NikitaRevenco Mar 24, 2024
d5d8bc8
feat(hanoi): create solution
NikitaRevenco Apr 26, 2024
9577544
feat(hanoi): create explanation readme
NikitaRevenco Apr 26, 2024
509c18d
feat(hanoi): create tests for exercise
NikitaRevenco May 3, 2024
507b137
refactor: wording
NikitaRevenco Jul 3, 2024
2d6cdc3
chore: use `_` instead of `*`
NikitaRevenco Jul 3, 2024
c9f385f
refactor: wording
NikitaRevenco Jul 3, 2024
85570c6
fix: spelling
NikitaRevenco Jul 3, 2024
842e1b7
refactor: remove redundant `length` tests
NikitaRevenco Jul 3, 2024
6163c8d
feat: clarify requirements
NikitaRevenco Jul 3, 2024
e010cdc
feat(hanoi): add line breaks
NikitaRevenco Aug 18, 2024
1fc7d09
feat(hanoi): add line breaks
NikitaRevenco Aug 18, 2024
3f98387
feat(hanoi): add line breaks
NikitaRevenco Aug 18, 2024
58a7f67
feat(hanoi): more concise representation of function in readme
NikitaRevenco Aug 18, 2024
12cd75c
feat(hanoi): change the way the function is tested to use strings ins…
NikitaRevenco Aug 18, 2024
98242fb
feat(hanoi): copy over tests from solution
NikitaRevenco Aug 20, 2024
7b343a1
feat: remove redundant test
NikitaRevenco Aug 25, 2024
dbd8ee1
doc(hanoi): update instructions to use the new expected method
NikitaRevenco Aug 25, 2024
86a7cfa
fix(hanoi): spelling error
NikitaRevenco Aug 25, 2024
e6d5034
feat: use exclamation mark instead of period
NikitaRevenco Aug 25, 2024
70e61a4
feat: provide a more explicit example of what form the string should …
NikitaRevenco Aug 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions 20_hanoi/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Exercise 20 - hanoi

Good job, you have come a very long way. You should be proud of yourself for making it this far! At this point, you hopefully feel comfortable with recursion, and so, this **final recursive exercise** should give you a proper challenge and take your abilities to the *next* level.

Tower of Hanoi is a classic challenge in which we have 3 towers. Tower 2 and tower 3 are empty. Tower 1 has `n` disks. The goal is to move all disks from tower 1 to tower 3 so that they are in the exact same order. For instance:

```javascript
[[3, 2, 1], [], []]

// ...

[[], [], [3, 2, 1]]
```

The rules are as follows:
- Each disk has a length. For abstraction purposes, we will imagine each disk as an integer with that disk's length.
- We can only move 1 disk at a time between any of the towers
- The towers are modelled as stacks. We can move disks from the top of one stack to the top of another stack with the `Array.prototype.pop` and `Array.prototype.push` methods.
- **Disks can only be placed on top of disks that are smaller**. For instance, we cannot have the tower `[3, 4]` but `[4, 3]` is fine.

Your task is to create a function, `hanoi(n)`, that when given the number of disks in the starting tower (`n`), will return an array containing the steps that have to be taken in order to get from the initial state to the final state. Each step will be a string in the form:

```javascript
`Move disc ${discNumber} from tower ${fromTower} to tower ${toTower}`
```

The function **must** return a solution in the minimum number of moves. i.e. there will be no duplicates in the solution array returned.

For example, here is the expected output of `hanoi(3)`:

```javascript
[
"Move disc 1 from tower 1 to tower 3",
"Move disc 2 from tower 1 to tower 2",
"Move disc 1 from tower 3 to tower 2",
"Move disc 3 from tower 1 to tower 3",
"Move disc 1 from tower 2 to tower 1",
"Move disc 2 from tower 2 to tower 3",
"Move disc 1 from tower 1 to tower 3",
]
```
6 changes: 6 additions & 0 deletions 20_hanoi/hanoi.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const hanoi = function() {

};

// Do not edit below this line
module.exports = hanoi;
52 changes: 52 additions & 0 deletions 20_hanoi/hanoi.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
const hanoi = require("./hanoi");

describe("hanoi", () => {
test("hanoi(1) should solve the puzzle in 1 move", () => {
const result = hanoi(1);
expect(result).toEqual(["Move disc 1 from tower 1 to tower 3"]);
});

test.skip("hanoi(2) should solve the puzzle in 3 moves", () => {
const result = hanoi(2);
expect(result).toEqual([
"Move disc 1 from tower 1 to tower 2",
"Move disc 2 from tower 1 to tower 3",
"Move disc 1 from tower 2 to tower 3",
]);
});

test.skip("hanoi(3) should solve the puzzle in 7 moves", () => {
const result = hanoi(3);
expect(result).toEqual([
"Move disc 1 from tower 1 to tower 3",
"Move disc 2 from tower 1 to tower 2",
"Move disc 1 from tower 3 to tower 2",
"Move disc 3 from tower 1 to tower 3",
"Move disc 1 from tower 2 to tower 1",
"Move disc 2 from tower 2 to tower 3",
"Move disc 1 from tower 1 to tower 3",
]);
});

test.skip("hanoi(4) should solve the puzzle in 15 moves", () => {
const result = hanoi(4);
expect(result).toEqual([
"Move disc 1 from tower 1 to tower 2",
"Move disc 2 from tower 1 to tower 3",
"Move disc 1 from tower 2 to tower 3",
"Move disc 3 from tower 1 to tower 2",
"Move disc 1 from tower 3 to tower 1",
"Move disc 2 from tower 3 to tower 2",
"Move disc 1 from tower 1 to tower 2",
"Move disc 4 from tower 1 to tower 3",
"Move disc 1 from tower 2 to tower 3",
"Move disc 2 from tower 2 to tower 1",
"Move disc 1 from tower 3 to tower 1",
"Move disc 3 from tower 2 to tower 3",
"Move disc 1 from tower 1 to tower 2",
"Move disc 2 from tower 1 to tower 3",
"Move disc 1 from tower 2 to tower 3",
]);
});
});

24 changes: 24 additions & 0 deletions 20_hanoi/solution/hanoi-solution.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
const hanoi = function (
n,
fromTower = 0,
storageTower = 1,
toTower = 2,
steps = [],
) {
if (n <= 0) {
return steps;
}

hanoi(n - 1, fromTower, toTower, storageTower, steps);

steps.push(
`Move disc ${n} from tower ${fromTower + 1} to tower ${toTower + 1}`,
);

hanoi(n - 1, storageTower, fromTower, toTower, steps);

return steps;
};

// Do not edit below this line
module.exports = hanoi;
51 changes: 51 additions & 0 deletions 20_hanoi/solution/hanoi-solution.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
const hanoi = require("./hanoi-solution");

describe("hanoi", () => {
test("hanoi(1) should solve the puzzle in 1 move", () => {
const result = hanoi(1);
expect(result).toEqual(["Move disc 1 from tower 1 to tower 3"]);
});

test("hanoi(2) should solve the puzzle in 3 moves", () => {
const result = hanoi(2);
expect(result).toEqual([
"Move disc 1 from tower 1 to tower 2",
"Move disc 2 from tower 1 to tower 3",
"Move disc 1 from tower 2 to tower 3",
]);
});

test("hanoi(3) should solve the puzzle in 7 moves", () => {
const result = hanoi(3);
expect(result).toEqual([
"Move disc 1 from tower 1 to tower 3",
"Move disc 2 from tower 1 to tower 2",
"Move disc 1 from tower 3 to tower 2",
"Move disc 3 from tower 1 to tower 3",
"Move disc 1 from tower 2 to tower 1",
"Move disc 2 from tower 2 to tower 3",
"Move disc 1 from tower 1 to tower 3",
]);
});

test("hanoi(4) should solve the puzzle in 15 moves", () => {
const result = hanoi(4);
expect(result).toEqual([
"Move disc 1 from tower 1 to tower 2",
"Move disc 2 from tower 1 to tower 3",
"Move disc 1 from tower 2 to tower 3",
"Move disc 3 from tower 1 to tower 2",
"Move disc 1 from tower 3 to tower 1",
"Move disc 2 from tower 3 to tower 2",
"Move disc 1 from tower 1 to tower 2",
"Move disc 4 from tower 1 to tower 3",
"Move disc 1 from tower 2 to tower 3",
"Move disc 2 from tower 2 to tower 1",
"Move disc 1 from tower 3 to tower 1",
"Move disc 3 from tower 2 to tower 3",
"Move disc 1 from tower 1 to tower 2",
"Move disc 2 from tower 1 to tower 3",
"Move disc 1 from tower 2 to tower 3",
]);
});
});