#285. nearHundred
nearHundred
Background
Description
Given an int n, return true if it is within 10 of 100 or 200. Note: Math.abs(num) computes the absolute value of a number.
Format
Input
Output
Samples
93
true
90
true
89
false
Limitation
1s, 1024KiB for each test case.