Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 1.26 KB

File metadata and controls

17 lines (10 loc) · 1.26 KB

Subtract extreme #tuple

by Lo @LoTwT

Take the Challenge

Implement the type Subtraction that is - in Javascript by using BuildTuple.

If the minuend is less than the subtrahend, it should be never.

It's a simple version.

For example

Subtract<2, 1> // expect to be 1
Subtract<1, 2> // expect to be never

Back Share your Solutions Check out Solutions