forked from Buzzpy/Dev-Encyclopedia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTowerOfHanoi.json
More file actions
18 lines (18 loc) · 944 Bytes
/
TowerOfHanoi.json
File metadata and controls
18 lines (18 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"title": "Tower of Hanoi",
"subtext": "A Mathematical puzzle involving three rods and a set of disks of different sizes",
"categories": ["Mathematic", "Programming Concepts"],
"author": "Sasakiroo",
"description": {
"title":"Tower of Hanoi in Programming",
"Texts:": [
"In programming, Tower of Hanoi — the Algorithm involves breaking down the problems into smaller subproblems",
"This algorithm let you recursively moving smaller stacks of disks to an auxiliary rod, moving the largest disk to the destination rod, then moving the smaller stack from auxiliary rod to the destination"
],
"image": "https://upload.wikimedia.org/wikipedia/commons/0/07/Tower_of_Hanoi.jpeg",
"refrences": [
"https://en.wikipedia.org/wiki/Tower_of_Hanoi",
"https://www.shiksha.com/online-courses/articles/tower-of-hanoi-program-in-c/"
]
}
}