Browse Source

Update Generate Range of Integers.md

PythonCoder8 3 years ago
parent
commit
bfdad91259
1 changed files with 2 additions and 0 deletions
  1. 2 0
      8 kyu/Generate Range of Integers/Generate Range of Integers.md

+ 2 - 0
8 kyu/Generate Range of Integers/Generate Range of Integers.md

@@ -1,5 +1,7 @@
 # 8 kyu - Generate Range of Integers - Authored by XxxX88
 
+Link to Kata: https://www.codewars.com/kata/55eca815d0d20962e1000106
+
 Implement a function named generateRange(min, max, step), which takes three arguments and generates a range of integers from min to max, with the step. The first integer is the minimum value, the second is the maximum of the range and the third is the step. (min < max)
 
 **Task**