171 Excel Sheet Column Number – Easy
Problem:
Given a column title as appear in an Excel sheet, return its corresponding column number.
For example:
Thoughts:
This is like a base of 26 system problem. It’s similar but easier than the reverse.
Because no need to worry about minus one problem.
Solutions:
Last updated