freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-424-kakuro.arabic.md

612 B

id challengeType title videoUrl localeTitle
5900f5141000cf542c510026 5 Problem 424: Kakuro

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler424();

Solution

// solution required