freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-146-investigating-a...

729 B
Raw Blame History

id challengeType title videoUrl localeTitle
5900f3fe1000cf542c50ff11 5 Problem 146: Investigating a Prime Pattern 问题146调查素数模式

Description

undefined

Instructions

Tests

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

Challenge Seed

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

euler146();

Solution

// solution required