freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-94-almost-equilater...

621 B

id challengeType title videoUrl localeTitle
5900f3ca1000cf542c50fedd 5 Problem 94: Almost equilateral triangles

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler94();

Solution

// solution required