Skip to content

Latest commit

 

History

History
12 lines (6 loc) · 1.54 KB

File metadata and controls

12 lines (6 loc) · 1.54 KB

Inclusive Range extreme #infer #array

by Sg @suica

Take the Challenge

Recursion depth in type system is one of the limitations of TypeScript, the number is around 45.

We need to go deeper. And we could go deeper.

In this challenge, you are given one lower boundary and one higher boundary, by which a range of natural numbers is inclusively sliced. You should develop a technique that enables you to do recursion deeper than the limitation, since both boundary vary from 0 to 200.

Note that when Lower > Higher, output an empty tuple.


Back Share your Solutions Check out Solutions