1006 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			1006 B
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3e71000cf542c50fefa | 5 | Problem 123: Prime square remainders | 问题123:素数正方形余数 | 
Description
Instructions
Tests
tests:
  - text: <code>euler123()</code>应该返回21035。
    testString: 'assert.strictEqual(euler123(), 21035, "<code>euler123()</code> should return 21035.");'
Challenge Seed
function euler123() {
  // Good luck!
  return true;
}
euler123();
Solution
// solution required