freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-127-abc-hits.arabic.md

604 B

id challengeType title videoUrl localeTitle
5900f3ec1000cf542c50fefe 5 Problem 127: abc-hits

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler127();

Solution

// solution required