freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-149-searching-for-a...

635 B

id challengeType title videoUrl localeTitle
5900f4021000cf542c50ff13 5 Problem 149: Searching for a maximum-sum subsequence

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler149();

Solution

// solution required