1.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId | 
|---|---|---|---|
| 5900f47c1000cf542c50ff8e | 5 | Problem 270: Cutting Squares | 301920 | 
Description
What is C(30) mod 108 ?
Instructions
Tests
tests:
  - text: <code>euler270()</code> should return 82282080.
    testString: assert.strictEqual(euler270(), 82282080);
Challenge Seed
function euler270() {
  // Good luck!
  return true;
}
euler270();
Solution
// solution required