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>
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| id: 5900f4ca1000cf542c50ffdc
 | |
| challengeType: 5
 | |
| isHidden: false
 | |
| title: 'Problem 349: Langton''s ant'
 | |
| forumTopicId: 302008
 | |
| ---
 | |
| 
 | |
| ## Description
 | |
| <section id='description'>
 | |
| An ant moves on a regular grid of squares that are coloured either black or white.
 | |
| The ant is always oriented in one of the cardinal directions (left, right, up or down) and moves from square to adjacent square according to the following rules:
 | |
| - if it is on a black square, it flips the color of the square to white, rotates 90 degrees counterclockwise and moves forward one square.
 | |
| - if it is on a white square, it flips the color of the square to black, rotates 90 degrees clockwise and moves forward one square.
 | |
| 
 | |
| Starting with a grid that is entirely white, how many squares are black after 1018 moves of the ant?
 | |
| </section>
 | |
| 
 | |
| ## Instructions
 | |
| <section id='instructions'>
 | |
| 
 | |
| </section>
 | |
| 
 | |
| ## Tests
 | |
| <section id='tests'>
 | |
| 
 | |
| ```yml
 | |
| tests:
 | |
|   - text: <code>euler349()</code> should return 115384615384614940.
 | |
|     testString: assert.strictEqual(euler349(), 115384615384614940);
 | |
| 
 | |
| ```
 | |
| 
 | |
| </section>
 | |
| 
 | |
| ## Challenge Seed
 | |
| <section id='challengeSeed'>
 | |
| 
 | |
| <div id='js-seed'>
 | |
| 
 | |
| ```js
 | |
| function euler349() {
 | |
|   // Good luck!
 | |
|   return true;
 | |
| }
 | |
| 
 | |
| euler349();
 | |
| ```
 | |
| 
 | |
| </div>
 | |
| 
 | |
| 
 | |
| 
 | |
| </section>
 | |
| 
 | |
| ## Solution
 | |
| <section id='solution'>
 | |
| 
 | |
| ```js
 | |
| // solution required
 | |
| ```
 | |
| 
 | |
| </section>
 |