A sentence is a list of tokens separated by a single space with no leading or trailing spaces. Every token is either a positive number consisting of digits 0-9 with no leading zeros, or a word consisting of lowercase English letters.
For example, "a puppy has 2 eyes 4 legs" is a sentence with seven tokens: "2" and "4" are numbers and the other tokens such as "puppy" are words.
Given a string s representing a sentence, you need to check if all the numbers in s are strictly increasing from left to right (i.e., other than the last number, each number is strictly smaller than the number on its right in s).
Return true if so, or false otherwise.
3 <= s.length <= 200s consists of lowercase English letters, spaces, and digits from 0 to 9, inclusives is between 2 and 100, inclusives are separated by a single spacess is a positive number less than 100, with no leading zeross contains no leading or trailing spacess = "1 box has 3 blue 4 red 6 green and 12 yellow marbles"trues = "hello world 5 x 5"falses = "sunset is at 7 51 pm overnight lows will be in the low 50 and 60 s"false