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

55 lines
651 B
Markdown

---
id: 5900f4831000cf542c50ff95
challengeType: 5
title: 'Problem 278: Linear Combinations of Semiprimes'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler278(), 1228215747273908500, "<code>euler278()</code> should return 1228215747273908500.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler278() {
// Good luck!
return true;
}
euler278();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>