freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-153-investigating-g...

645 B

id challengeType title videoUrl localeTitle
5900f4051000cf542c50ff18 5 Problem 153: Investigating Gaussian Integers

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler153();

Solution

// solution required