#180. scores100
scores100
Background
Description
Given an array of scores, return true if there are scores of 100 next to each other in the array. The array length will be at least 2.
Format
Input
Output
Samples
[1 100 100]
true
[1 100 99 100]
false
[100 1 100 100]
true
Limitation
1s, 1024KiB for each test case.