From 26556cf02e55d4ea8599b05de86eef50de374cdd Mon Sep 17 00:00:00 2001 From: Isabelle Viktoria Maciohsek Date: Sun, 4 Oct 2020 11:03:31 +0300 Subject: [PATCH] Update arithmetic_progression.md --- snippets/arithmetic_progression.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/arithmetic_progression.md b/snippets/arithmetic_progression.md index 143d25521..fd21b46a7 100644 --- a/snippets/arithmetic_progression.md +++ b/snippets/arithmetic_progression.md @@ -8,10 +8,10 @@ Returns a list of numbers in the arithmetic progression starting with the given - Use `range` and `list` with the appropriate start, step and end values. ```py -def find_multiples(n, lim): +def arithmetic_progression(n, lim): return list(range(n, lim + 1, n)) ``` ```py -find_multiples(5, 25) # [5, 10, 15, 20, 25] +arithmetic_progression(5, 25) # [5, 10, 15, 20, 25] ```