freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-278-linear-combinat...

651 B

id challengeType title videoUrl localeTitle
5900f4831000cf542c50ff95 5 Problem 278: Linear Combinations of Semiprimes

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler278();

Solution

// solution required