freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-167-investigating-u...

634 B

id challengeType title videoUrl localeTitle
5900f4141000cf542c50ff26 5 Problem 167: Investigating Ulam sequences

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler167();

Solution

// solution required