freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-46-goldbachs-other-...

1.2 KiB
Raw Blame History

id challengeType title videoUrl localeTitle
5900f39a1000cf542c50fead 5 Problem 46: Goldbach"s other conjecture 问题46哥德巴赫的另一个猜想

Description

由Christian Goldbach提出每个奇数的复合数可以写成素数和两个平方的总和。 9 = 7 + 2×1 2 15 = 7 + 2×2 2 21 = 3 + 2×3 2 25 = 7 + 2×3 2 27 = 19 + 2×2 2 33 = 31 + 2×1 2转这个猜想是假的。什么是最小的奇数复合,不能写为素数和两倍平方的总和?

Instructions

Tests

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

Challenge Seed

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

goldbachsOtherConjecture();

Solution

// solution required