freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-98-anagramic-square...

602 B

id challengeType title videoUrl localeTitle
5900f3cf1000cf542c50fee1 5 Problem 98: Anagramic squares

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler98();

Solution

// solution required