freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-166-criss-cross.ara...

605 B

id challengeType title videoUrl localeTitle
5900f4131000cf542c50ff25 5 Problem 166: Criss Cross

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler166();

Solution

// solution required