freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-349-langtons-ant.ar...

629 B

id challengeType title videoUrl localeTitle
5900f4ca1000cf542c50ffdc 5 Problem 349: Langton"s ant

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler349(), 115384615384614940, "<code>euler349()</code> should return 115384615384614940.");'

Challenge Seed

function euler349() {
  // Good luck!
  return true;
}

euler349();

Solution

// solution required