freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-396-weak-goodstein-...

621 B

id challengeType title videoUrl localeTitle
5900f4f81000cf542c51000b 5 Problem 396: Weak Goodstein sequence

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler396();

Solution

// solution required