freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-163-cross-hatched-t...

615 B

id challengeType title videoUrl localeTitle
5900f40f1000cf542c50ff22 5 Problem 163: Cross-hatched triangles

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler163();

Solution

// solution required