File tree 1 file changed +39
-0
lines changed
1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ ##==================================
2
+ ## Leetcode
3
+ ## Student: Vandit Jyotindra Gajjar
4
+ ## Year: 2020
5
+ ## Problem: 171
6
+ ## Problem Name: Excel Sheet Column Number
7
+ ##===================================
8
+ #
9
+ #Given a column title as appear in an Excel sheet, return its corresponding column number.
10
+ #
11
+ #For example:
12
+ #
13
+ # A -> 1
14
+ # B -> 2
15
+ # C -> 3
16
+ # ...
17
+ # Z -> 26
18
+ # AA -> 27
19
+ # AB -> 28
20
+ # ...
21
+ #Example 1:
22
+ #
23
+ #Input: "A"
24
+ #Output: 1
25
+ #Example 2:
26
+ #
27
+ #Input: "AB"
28
+ #Output: 28
29
+ #Example 3:
30
+ #
31
+ #Input: "ZY"
32
+ #Output: 701
33
+ class Solution :
34
+ def titleToNumber (self , s ):
35
+ tmp = 0 #Initialize tmp
36
+ for i in range (len (s )): #Loop through string
37
+ tmp *= 26 #Update tmp by multiplying with 26(A to Z)
38
+ tmp += ord (s [i ]) - ord ('A' ) + 1 #Update tmp by finding unicode value for given s[i] and subtact from A and add 1
39
+ return tmp #Return tmp
You can’t perform that action at this time.
0 commit comments