Given a string columnTitle representing an Excel sheet column label, return the corresponding column number.
Excel column labels use a base "A" maps to "B" maps to "Z" maps to "Z", the labels continue as "AA", "AB", and so on.
Constraints:
columnTitle.length
columnTitle consists only of uppercase English letters.
columnTitle is in the range ["A", "FXSHRXW"].
Given a string columnTitle representing an Excel sheet column label, return the corresponding column number.
Excel column labels use a base "A" maps to "B" maps to "Z" maps to "Z", the labels continue as "AA", "AB", and so on.
Constraints:
columnTitle.length
columnTitle consists only of uppercase English letters.
columnTitle is in the range ["A", "FXSHRXW"].