Question: 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
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.
scoresIncreasing([1, 3, 4]) true scoresIncreasing([1, 3, 2]) false scoresIncreasing([1, 1, 4]) true
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
