Skip to content

Commit 36d838e

Browse files
committedMay 5, 2020
Adding Efficient Solution - Problem 171 - Excel Column number
1 parent 23a68f9 commit 36d838e

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed
 
+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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

0 commit comments

Comments
 (0)
Please sign in to comment.