Browse Source

Update Generate Range of Integers.md

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

+ 1 - 1
8 kyu/Generate Range of Integers/Generate Range of Integers.md

@@ -1,4 +1,4 @@
-8 kyu - Generate Range of Integers - Authored by XxxX88
+# 8 kyu - Generate Range of Integers - Authored by XxxX88
 
 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)