Given a column title as it appears in an Excel sheet return its corresponding column number.
The number is computed in the following way:
A -> 1
B -> 2
C -> 3
...
Z -> 26
AA -> 27
AB -> 28
...title_to_number("A") ➞ 1
title_to_number("R") ➞ 18
title_to_number("AB") ➞ 281 <= len(s) <= 7s consists only of uppercase English letters.