Skip to content

Files

Latest commit

487b750 · May 27, 2022

History

History
11 lines (8 loc) · 227 Bytes

(8 kyu) What is between.md

File metadata and controls

11 lines (8 loc) · 227 Bytes

What is between (8 kyu)

Complete the function that takes two integers (a, b, where a < b) and return an array of all integers between the input parameters, including them.

For example:

a = 1
b = 4
--> [1, 2, 3, 4]