freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-79-passcode-derivat...

610 B

id challengeType title videoUrl localeTitle
5900f3bb1000cf542c50fece 5 Problem 79: Passcode derivation

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler79();

Solution

// solution required