Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
		
			
				
	
	
	
		
			1.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.0 KiB
		
	
	
	
	
	
	
	
id, challengeType, isHidden, title, forumTopicId
| id | challengeType | isHidden | title | forumTopicId | 
|---|---|---|---|---|
| 5900f4931000cf542c50ffa5 | 5 | false | Problem 294: Sum of digits - experience #23 | 301946 | 
Description
For a positive integer n, define S(n) as the number of positive integers k < 10n with the following properties : k is divisible by 23 and d(k) = 23.
You are given that S(9) = 263626 and S(42) = 6377168878570056.
Find S(1112) and give your answer mod 109.
Instructions
Tests
tests:
  - text: <code>euler294()</code> should return 789184709.
    testString: assert.strictEqual(euler294(), 789184709);
Challenge Seed
function euler294() {
  // Good luck!
  return true;
}
euler294();
Solution
// solution required