freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-182-rsa-encryption....

618 B

id challengeType title videoUrl localeTitle
5900f4231000cf542c50ff35 5 Problem 182: RSA encryption

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler182();

Solution

// solution required