freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-157-solving-the-dio...

691 B
Raw Blame History

id challengeType title videoUrl localeTitle
5900f4091000cf542c50ff1c 5 Problem 157: Solving the diophantine equation 问题157解决丢番图方程

Description

undefined

Instructions

undefined

Tests

tests:
  - text: <code>euler157()</code>应返回53490。
    testString: 'assert.strictEqual(euler157(), 53490, "<code>euler157()</code> should return 53490.");'

Challenge Seed

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

euler157();

Solution

// solution required