Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-118-pandigital-prime-sets.chinese.md
Oliver Eyton-Williams 61460c8601 fix: insert blank line after ```
search and replace ```\n< with ```\n\n< to ensure there's an empty line
before closing tags
2020-08-16 04:45:20 +05:30

942 B
Raw Blame History

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f3e21000cf542c50fef5 5 Problem 118: Pandigital prime sets 问题118Pandigital prime set

Description

使用所有数字1到9并自由地连接它们以形成十进制整数可以形成不同的集合。有趣的是集合{2,5,47,89,631}属于它的所有元素都是素数。包含每个数字1到9的多少个不同的集合只包含主要元素

Instructions

Tests

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

Challenge Seed

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

euler118();

Solution

// solution required

/section>