#178. scoresIncreasing
scoresIncreasing
Background
Description
Given an array of scores, return true if each score is equal or greater than the one before. The array will be length 2 or more.
Format
Input
Output
Samples
[1 3 4]
true
[1 3 2]
false
[1 1 4]
true
Limitation
1s, 1024KiB for each test case.