1.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.0 KiB
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f3ef1000cf542c50ff02 | 5 | Problem 131: Prime cube partnership | 
Description
Instructions
Tests
tests:
  - text: <code>euler131()</code> should return 173.
    testString: 'assert.strictEqual(euler131(), 173, "<code>euler131()</code> should return 173.");'
Challenge Seed
function euler131() {
  // Good luck!
  return true;
}
euler131();
Solution
// solution required