-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexcel_conversion.py
57 lines (40 loc) · 1.2 KB
/
excel_conversion.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""
Microsoft Excel numbers cells as 1...26 and after that AA, AB.... AAA, AAB...ZZZ and so on.
Given a number, convert it to that format and vice versa.
"""
import string
alphabet = string.ascii_uppercase
def _generate_prefix(indices):
try:
return ''.join([alphabet[index] for index in indices])
except:
a = 1
def reset_previous_index(indices):
for i in range(len(indices)):
if indices[-1 - i] == 25:
indices[-1 - i] = 0
else:
indices[-1 - i] += 1
return False
return True
def _increment_prefix_indices(indices):
if len(indices) == 0 or indices[-1] == 25:
add = reset_previous_index(indices)
if add:
indices.append(0)
else:
indices[-1] += 1
def convert(number):
""" does it by iterating through the range
O(n)
"""
prefix_indices = []
result = ''
for i in range(number):
if i % 26 == 0 and i != 0:
_increment_prefix_indices(prefix_indices)
result = '{}{}'.format(_generate_prefix(prefix_indices), alphabet[i % 26])
return result
convert(50000)
def find_conversion(number):
""" could be something with modulo 3 % 26 = C """