* 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>
		
			
				
	
	
		
			39 lines
		
	
	
		
			566 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			566 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| id: 5900f48f1000cf542c50ffa1
 | |
| title: 'Problem 290: Digital Signature'
 | |
| challengeType: 5
 | |
| forumTopicId: 301942
 | |
| dashedName: problem-290-digital-signature
 | |
| ---
 | |
| 
 | |
| # --description--
 | |
| 
 | |
| How many integers 0 ≤ n < 1018 have the property that the sum of the digits of n equals the sum of digits of 137n?
 | |
| 
 | |
| # --hints--
 | |
| 
 | |
| `euler290()` should return 20444710234716470.
 | |
| 
 | |
| ```js
 | |
| assert.strictEqual(euler290(), 20444710234716470);
 | |
| ```
 | |
| 
 | |
| # --seed--
 | |
| 
 | |
| ## --seed-contents--
 | |
| 
 | |
| ```js
 | |
| function euler290() {
 | |
| 
 | |
|   return true;
 | |
| }
 | |
| 
 | |
| euler290();
 | |
| ```
 | |
| 
 | |
| # --solutions--
 | |
| 
 | |
| ```js
 | |
| // solution required
 | |
| ```
 |