#140. lessBy10
lessBy10
Background
Description
Given three ints, a b c, return true if one of them is 10 or more less than one of the others.
Format
Input
Output
Samples
1 7 11
true
1 7 10
false
11 1 7
true
Limitation
1s, 1024KiB for each test case.