Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 436 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 436 Bytes
  • Completed at: 2023-10-06T04:33:48.820Z

  • Completed languages: java

  • Tags: Fundamentals, Algorithms

  • Rank: 8 kyu

Description

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]