Files
30-seconds-of-code/snippets/arithmetic-progression.md
2023-04-28 22:29:23 +03:00

602 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Arithmetic progression snippet
math
algorithm
u-got-this 2021-10-13T19:29:39+02:00

Creates an array of numbers in the arithmetic progression, starting with the given positive integer and up to the specified limit.

  • Use Array.from() to create an array of the desired length, lim / n. Use a map function to fill it with the desired values in the given range.
const arithmeticProgression  = (n, lim) =>
  Array.from({ length: Math.ceil(lim / n) }, (_, i) => (i + 1) * n );
arithmeticProgression(5, 25); // [5, 10, 15, 20, 25]