freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-376-nontransitive-s...

636 B

id challengeType title videoUrl localeTitle
5900f4e51000cf542c50fff7 5 Problem 376: Nontransitive sets of dice

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler376();

Solution

// solution required