freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-462-permutation-of-...

627 B

id challengeType title videoUrl localeTitle
5900f53b1000cf542c51004d 5 Problem 462: Permutation of 3-smooth numbers

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler462();

Solution

// solution required