freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-152-writing-one-hal...

670 B
Raw Blame History

id challengeType title videoUrl localeTitle
5900f4041000cf542c50ff17 5 Problem 152: Writing one half as a sum of inverse squares 问题152将一半写为倒数平方和

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler152();

Solution

// solution required