* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| id: 5900f3c31000cf542c50fed5
 | |
| title: 'Problem 86: Cuboid route'
 | |
| challengeType: 5
 | |
| forumTopicId: 302200
 | |
| dashedName: problem-86-cuboid-route
 | |
| ---
 | |
| 
 | |
| # --description--
 | |
| 
 | |
| A spider, S, sits in one corner of a cuboid room, measuring 6 by 5 by 3, and a fly, F, sits in the opposite corner. By travelling on the surfaces of the room the shortest "straight line" distance from S to F is 10 and the path is shown on the diagram.
 | |
| 
 | |
| <img class="img-responsive center-block" alt="a diagram of a spider and fly's path from one corner of a cuboid room to the opposite corner" src="https://cdn-media-1.freecodecamp.org/project-euler/cuboid-route.png" style="background-color: white; padding: 10px;">
 | |
| 
 | |
| However, there are up to three "shortest" path candidates for any given cuboid and the shortest route doesn't always have integer length.
 | |
| 
 | |
| It can be shown that there are exactly 2060 distinct cuboids, ignoring rotations, with integer dimensions, up to a maximum size of M by M by M, for which the shortest route has integer length when M = 100. This is the least value of M for which the number of solutions first exceeds two thousand; the number of solutions when M = 99 is 1975.
 | |
| 
 | |
| Find the least value of M such that the number of solutions first exceeds one million.
 | |
| 
 | |
| # --hints--
 | |
| 
 | |
| `cuboidRoute()` should return a number.
 | |
| 
 | |
| ```js
 | |
| assert(typeof cuboidRoute() === 'number');
 | |
| ```
 | |
| 
 | |
| `cuboidRoute()` should return 1818.
 | |
| 
 | |
| ```js
 | |
| assert.strictEqual(cuboidRoute(), 1818);
 | |
| ```
 | |
| 
 | |
| # --seed--
 | |
| 
 | |
| ## --seed-contents--
 | |
| 
 | |
| ```js
 | |
| function cuboidRoute() {
 | |
| 
 | |
|   return true;
 | |
| }
 | |
| 
 | |
| cuboidRoute();
 | |
| ```
 | |
| 
 | |
| # --solutions--
 | |
| 
 | |
| ```js
 | |
| // solution required
 | |
| ```
 |