freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-93-arithmetic-expre...

605 B

id challengeType title videoUrl localeTitle
5900f3ca1000cf542c50fedc 5 Problem 93: Arithmetic expressions

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler93();

Solution

// solution required