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 ```ts Subtract<2, 1> // expect to be 1 Subtract<1, 2> // expect to be never ```
Back Share your Solutions Check out Solutions