freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-393-migrating-ants....

630 B

id challengeType title videoUrl localeTitle
5900f4f61000cf542c510008 5 Problem 393: Migrating ants

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler393();

Solution

// solution required