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

Greater Than medium #array

by ch3cknull @ch3cknull

Take the Challenge

In This Challenge, You should implement a type GreaterThan<T, U> like T > U

Negative numbers do not need to be considered.

For example

GreaterThan<2, 1> //should be true
GreaterThan<1, 1> //should be false

Good Luck!


Back Share your Solutions Check out Solutions