Files
freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-172-investigating-numbers-with-few-repeated-digits.arabic.md

662 B

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f4181000cf542c50ff2b 5 Problem 172: Investigating numbers with few repeated digits

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler172();

Solution

// solution required