Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 1.32 KB

File metadata and controls

18 lines (12 loc) · 1.32 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
GreaterThan<10, 100> //should be false
GreaterThan<111, 11> //should be true

Good Luck!


Back Share your Solutions Check out Solutions