freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-415-titanic-sets.ar...

608 B

id challengeType title videoUrl localeTitle
5900f50c1000cf542c51001e 5 Problem 415: Titanic sets

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler415();

Solution

// solution required