-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexcel_sheet_colum_number.dart
132 lines (102 loc) · 3.19 KB
/
excel_sheet_colum_number.dart
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
-* Excel Sheet Column Number *-
Given a string columnTitle that represents the column title as appears in an Excel sheet, return its corresponding column number.
For example:
A -> 1
B -> 2
C -> 3
...
Z -> 26
AA -> 27
AB -> 28
...
Example 1:
Input: columnTitle = "A"
Output: 1
Example 2:
Input: columnTitle = "AB"
Output: 28
Example 3:
Input: columnTitle = "ZY"
Output: 701
Constraints:
1 <= columnTitle.length <= 7
columnTitle consists only of uppercase English letters.
columnTitle is in the range ["A", "FXSHRXW"].
*/
// extension Minus on String {
// String operator -(String rhs) => replaceAll(rhs, '');
// }
import 'dart:math';
class Solution {
// Time Limit exceeds
int titleToNumber(String columnTitle) {
int sum = 0;
for (String ch in columnTitle.split("")) {
int diff = ch.codeUnitAt(0) - ('A'.codeUnitAt(0) - 1);
sum = sum * 26 + diff;
}
return sum;
}
}
class B {
// Runtime: 656 ms, faster than 60.00% of Dart online submissions for Excel Sheet Column Number.
// Memory Usage: 158.5 MB, less than 40.00% of Dart online submissions for Excel Sheet Column Number.
int titleToNumber(String columnTitle) {
// Initialize the output result...
int result = 0;
// Traverse the whole list through the loop...
for (int i = 0; i < columnTitle.length; i++) {
// Process to get the excel sheet column number...
result *= 26;
result += columnTitle[i].codeUnitAt(0) - 'A'.codeUnitAt(0) + 1;
}
return result;
}
}
class C {
// Runtime: 693 ms, faster than 40.00% of Dart online submissions for Excel Sheet Column Number.
// Memory Usage: 148.3 MB, less than 60.00% of Dart online submissions for Excel Sheet Column Number.
int titleToNumber(String columnTitle) {
return columnTitle.length == 0
? 0
: (columnTitle.codeUnitAt(columnTitle.length - 1) -
'A'.codeUnitAt(0) +
1) +
26 *
titleToNumber(columnTitle.substring(0, columnTitle.length - 1));
}
}
class D {
/*
Idea:
Similar to our decimal representation on base 10, the excel column title also has similar representation but with base 26.
In deciaml representation, for example, 123 would mean 1x10^2 + 2x10^1 + 3x10^0
In excel column title, for example, ABC would mean 1x26^2 + 2x26^1 + 3x26^0
We can use charCodeAt to convert letter to number, but it is offset by 64, so we need to subtract 64.
Then we can use the representation from above to find the sum
*/
// Time lImit Exceed
int titleToNumber(String columnTitle) {
int sum = 0;
for (int i = 0; i < columnTitle.length; i++) {
int letter2Num = columnTitle.codeUnitAt(i) - 64;
sum = (sum + pow(26, columnTitle.length - 1 - i) * letter2Num).toInt();
}
return sum;
}
}
class E {
// Runtime: 726 ms, faster than 20.00% of Dart online submissions for Excel Sheet Column Number.
// Memory Usage: 148.7 MB, less than 60.00% of Dart online submissions for Excel Sheet Column Number.
int titleToNumber(String columnTitle) {
int ans = 0;
for (int i = 0; i < columnTitle.length; i++) {
ans *= 26;
int c = columnTitle.codeUnitAt(i);
int n = (c - 'A'.codeUnitAt(0) + 1);
ans += n;
}
return ans;
}
}