* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f4be1000cf542c50ffd0 | 5 | Problem 337: Totient Stairstep Sequences | 
Description
Find S(20 000 000) mod 108.
1 φ denotes Euler's totient function.
Instructions
Tests
tests:
  - text: <code>euler337()</code> should return 85068035.
    testString: assert.strictEqual(euler337(), 85068035, '<code>euler337()</code> should return 85068035.');
Challenge Seed
function euler337() {
  // Good luck!
  return true;
}
euler337();
Solution
// solution required