freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-277-a-modified-coll...

639 B

id challengeType title videoUrl localeTitle
5900f4811000cf542c50ff94 5 Problem 277: A Modified Collatz sequence

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler277();

Solution

// solution required