Files
freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-223-almost-right-angled-triangles-i.chinese.md
Kristofer Koishigawa b3213fc892 fix(i18n): chinese test suite (#38220)
* fix: Chinese test suite

Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working.

* fix: ran script, updated testStrings and solutions
2020-03-03 18:49:47 +05:30

892 B
Raw Blame History

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f44b1000cf542c50ff5e 5 Problem 223: Almost right-angled triangles I 问题223几乎是直角三角形I.

Description

如果边满足a2 + b2 = c2 + 1让我们称一个整数边三角形边a≤b≤c几乎不是锐角。

有多少个几乎没有锐角的三角形周长≤25,000,000

Instructions

Tests

tests:
  - text: <code>euler223()</code>应该返回61614848。
    testString: assert.strictEqual(euler223(), 61614848);

Challenge Seed

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

euler223();

Solution

// solution required