Easy
Given a word s, return true if its capital usage is correct: all uppercase, all lowercase, or only the first letter uppercase.
s
true
Input: s = "USA" Output: true
Input: s = "FlaG" Output: false
Input: s = "Google" Output: true