From 08ea7b56e53478dffb5cc5da5b07429491c937e1 Mon Sep 17 00:00:00 2001 From: Animesh <54435702+AnimeshRy@users.noreply.github.com> Date: Mon, 27 Jul 2020 00:32:34 +0530 Subject: [PATCH 1/4] Create find_multiples.md find_multiples added --- snippets/find_multiples.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 snippets/find_multiples.md diff --git a/snippets/find_multiples.md b/snippets/find_multiples.md new file mode 100644 index 000000000..5ba0e6b0c --- /dev/null +++ b/snippets/find_multiples.md @@ -0,0 +1,17 @@ +--- +title: find_multiples +tags: list, beginner +--- + +Find all the multiples between a number and a limit + +Use the range function and step up the same integer to find multiples + +```py +def find_multiples(integer, limit): + return list(range(integer,limit+1, integer)) +``` + +```py +find_multiples(5,25) # returns [5, 10, 15, 20, 25] +``` From 74fb5d3449a9347bf66d1248dac70f6d0ed01dce Mon Sep 17 00:00:00 2001 From: Animesh <54435702+AnimeshRy@users.noreply.github.com> Date: Tue, 28 Jul 2020 16:27:33 +0530 Subject: [PATCH 2/4] updated with all the changed asked --- snippets/arithmetic_progression.md | 17 +++++++++++++++++ snippets/find_multiples.md | 17 ----------------- 2 files changed, 17 insertions(+), 17 deletions(-) create mode 100644 snippets/arithmetic_progression.md delete mode 100644 snippets/find_multiples.md diff --git a/snippets/arithmetic_progression.md b/snippets/arithmetic_progression.md new file mode 100644 index 000000000..f270782e7 --- /dev/null +++ b/snippets/arithmetic_progression.md @@ -0,0 +1,17 @@ +--- +title: arithmetic_progression +tags: math, beginner +--- + +Find all the multiples between a number and a limit. + +Use the `range` function and step up the same integer to find multiples. + +```py +def find_multiples(integer, limit): + return list(range(integer,limit+1, integer)) +``` + +```py +find_multiples(5,25) +``` diff --git a/snippets/find_multiples.md b/snippets/find_multiples.md deleted file mode 100644 index 5ba0e6b0c..000000000 --- a/snippets/find_multiples.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: find_multiples -tags: list, beginner ---- - -Find all the multiples between a number and a limit - -Use the range function and step up the same integer to find multiples - -```py -def find_multiples(integer, limit): - return list(range(integer,limit+1, integer)) -``` - -```py -find_multiples(5,25) # returns [5, 10, 15, 20, 25] -``` From 10fd98764eaf04efad2d07b2864d46d9128a266e Mon Sep 17 00:00:00 2001 From: Animesh <54435702+AnimeshRy@users.noreply.github.com> Date: Tue, 28 Jul 2020 16:29:25 +0530 Subject: [PATCH 3/4] Updated the indent to 2 spaced Updated everything according to the comments --- snippets/arithmetic_progression.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/arithmetic_progression.md b/snippets/arithmetic_progression.md index f270782e7..fda2d2002 100644 --- a/snippets/arithmetic_progression.md +++ b/snippets/arithmetic_progression.md @@ -9,7 +9,7 @@ Use the `range` function and step up the same integer to find multiples. ```py def find_multiples(integer, limit): - return list(range(integer,limit+1, integer)) + return list(range(integer,limit+1, integer)) ``` ```py From 897cf88a41cbb461b4fdde307ad0387c098cca3f Mon Sep 17 00:00:00 2001 From: Isabelle Viktoria Maciohsek Date: Fri, 31 Jul 2020 22:37:02 +0300 Subject: [PATCH 4/4] Update arithmetic_progression.md --- snippets/arithmetic_progression.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/snippets/arithmetic_progression.md b/snippets/arithmetic_progression.md index fda2d2002..788f11c62 100644 --- a/snippets/arithmetic_progression.md +++ b/snippets/arithmetic_progression.md @@ -1,17 +1,17 @@ --- title: arithmetic_progression -tags: math, beginner +tags: math,beginner --- -Find all the multiples between a number and a limit. +Returns a list of numbers in the arithmetic progression starting with the given positive integer and up to the specified limit. -Use the `range` function and step up the same integer to find multiples. +Use `range` and `list` with the appropriate start, step and end values. ```py -def find_multiples(integer, limit): - return list(range(integer,limit+1, integer)) +def find_multiples(n, lim): + return list(range(n, lim + 1, n)) ``` ```py -find_multiples(5,25) +find_multiples(5, 25) # [5, 10, 15, 20, 25] ```