freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-408-admissible-path...

629 B

id challengeType title videoUrl localeTitle
5900f5091000cf542c51001b 5 Problem 408: Admissible paths through a grid

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler408();

Solution

// solution required