Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 747 Bytes

README.zh.md

File metadata and controls

27 lines (17 loc) · 747 Bytes

系列

给定一串数字,输出所有连续的n长度顺序子串。

例如,字符串"49142"长度为3的子串系列:

  • "491"
  • "914"
  • "142"

以下长度为 4 的 系列:

  • "4914"
  • "9142"

如果你要求一个 5 位数字,长度为 6 的系列,你应该得到原数字。

请注意,这些系列只需要在输入中是相邻的位置; 数字不需要在数字上连续.

资源

Project Euler 中,问题 8 的一个子集http://projecteuler.net/problem=8