freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-328-lowest-cost-sea...

622 B

id challengeType title videoUrl localeTitle
5900f4b41000cf542c50ffc7 5 Problem 328: Lowest-cost Search

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler328();

Solution

// solution required