Medium
Given an input string s, reverse the order of the words. Words are separated by one or more spaces; the result must have single spaces between words and no leading or trailing spaces.
Input: s = "the sky is blue" Output: "blue is sky the"
Input: s = " hello world " Output: "world hello"