Updated the indent to 2 spaced
Updated everything according to the comments
This commit is contained in:
@ -9,7 +9,7 @@ Use the `range` function and step up the same integer to find multiples.
|
|||||||
|
|
||||||
```py
|
```py
|
||||||
def find_multiples(integer, limit):
|
def find_multiples(integer, limit):
|
||||||
return list(range(integer,limit+1, integer))
|
return list(range(integer,limit+1, integer))
|
||||||
```
|
```
|
||||||
|
|
||||||
```py
|
```py
|
||||||
|
|||||||
Reference in New Issue
Block a user