freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-371-licence-plates....

616 B

id challengeType title videoUrl localeTitle
5900f4e01000cf542c50fff2 5 Problem 371: Licence plates

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler371();

Solution

// solution required