freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-420-2x2-positive-in...

711 B

id challengeType title videoUrl localeTitle
5900f5111000cf542c510023 5 Problem 420: 2x2 positive integer matrix Problema 420: matriz entera positiva 2x2

Description

undefined

Instructions

undefined

Tests

tests:
  - text: <code>euler420()</code> debe devolver 145159332.
    testString: 'assert.strictEqual(euler420(), 145159332, "<code>euler420()</code> should return 145159332.");'

Challenge Seed

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

euler420();

Solution

// solution required