* 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>
		
			
				
	
	
		
			47 lines
		
	
	
		
			915 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			915 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						|
id: 5900f3aa1000cf542c50febd
 | 
						|
title: 'Problem 62: Cubic permutations'
 | 
						|
challengeType: 5
 | 
						|
forumTopicId: 302174
 | 
						|
dashedName: problem-62-cubic-permutations
 | 
						|
---
 | 
						|
 | 
						|
# --description--
 | 
						|
 | 
						|
The cube, 41063625 (345<sup>3</sup>), can be permuted to produce two other cubes: 56623104 (384<sup>3</sup>) and 66430125 (405<sup>3</sup>). In fact, 41063625 is the smallest cube which has exactly three permutations of its digits which are also cube.
 | 
						|
 | 
						|
Find the smallest cube for which exactly five permutations of its digits are cube.
 | 
						|
 | 
						|
# --hints--
 | 
						|
 | 
						|
`cubicPermutations()` should return a number.
 | 
						|
 | 
						|
```js
 | 
						|
assert(typeof cubicPermutations() === 'number');
 | 
						|
```
 | 
						|
 | 
						|
`cubicPermutations()` should return 127035954683.
 | 
						|
 | 
						|
```js
 | 
						|
assert.strictEqual(cubicPermutations(), 127035954683);
 | 
						|
```
 | 
						|
 | 
						|
# --seed--
 | 
						|
 | 
						|
## --seed-contents--
 | 
						|
 | 
						|
```js
 | 
						|
function cubicPermutations() {
 | 
						|
 | 
						|
  return true;
 | 
						|
}
 | 
						|
 | 
						|
cubicPermutations();
 | 
						|
```
 | 
						|
 | 
						|
# --solutions--
 | 
						|
 | 
						|
```js
 | 
						|
// solution required
 | 
						|
```
 |