@@ -48,7 +48,7 @@ We return true because 21 + 210 == 231.
48
48
<pre >
49
49
<strong >Input:</strong > firstWord = " ; aaa" ; , secondWord = " ; a" ; , targetWord = " ; aab" ;
50
50
<strong >Output:</strong > false
51
- <strong >Explanation:</strong >
51
+ <strong >Explanation:</strong >
52
52
The numerical value of firstWord is " ; aaa" ; -> ; " ; 000" ; -> ; 0.
53
53
The numerical value of secondWord is " ; a" ; -> ; " ; 0" ; -> ; 0.
54
54
The numerical value of targetWord is " ; aab" ; -> ; " ; 001" ; -> ; 1.
@@ -60,7 +60,7 @@ We return false because 0 + 0 != 1.
60
60
<pre >
61
61
<strong >Input:</strong > firstWord = " ; aaa" ; , secondWord = " ; a" ; , targetWord = " ; aaaa" ;
62
62
<strong >Output:</strong > true
63
- <strong >Explanation:</strong >
63
+ <strong >Explanation:</strong >
64
64
The numerical value of firstWord is " ; aaa" ; -> ; " ; 000" ; -> ; 0.
65
65
The numerical value of secondWord is " ; a" ; -> ; " ; 0" ; -> ; 0.
66
66
The numerical value of targetWord is " ; aaaa" ; -> ; " ; 0000" ; -> ; 0.
@@ -81,7 +81,13 @@ We return true because 0 + 0 == 0.
81
81
82
82
<!-- solution:start -->
83
83
84
- ### Solution 1
84
+ ### Solution 1: String to Number
85
+
86
+ We define a function $\textit{f}(s)$ to calculate the numerical value of the string $s$. For each character $c$ in the string $s$, we convert it to the corresponding number $x$, then concatenate $x$ sequentially, and finally convert it to an integer.
87
+
88
+ Finally, we just need to check whether $\textit{f}(\textit{firstWord}) + \textit{f}(\textit{secondWord})$ equals $\textit{f}(\textit{targetWord})$.
89
+
90
+ The time complexity is $O(L)$, where $L$ is the sum of the lengths of all strings in the problem. The space complexity is $O(1)$.
85
91
86
92
<!-- tabs:start -->
87
93
@@ -90,11 +96,12 @@ We return true because 0 + 0 == 0.
90
96
``` python
91
97
class Solution :
92
98
def isSumEqual (self , firstWord : str , secondWord : str , targetWord : str ) -> bool :
93
- def f (s ):
94
- res = 0
95
- for c in s:
96
- res = res * 10 + (ord (c) - ord (' a' ))
97
- return res
99
+ def f (s : str ) -> int :
100
+ ans, a = 0 , ord (" a" )
101
+ for c in map (ord , s):
102
+ x = c - a
103
+ ans = ans * 10 + x
104
+ return ans
98
105
99
106
return f(firstWord) + f(secondWord) == f(targetWord)
100
107
```
@@ -108,11 +115,11 @@ class Solution {
108
115
}
109
116
110
117
private int f (String s ) {
111
- int res = 0 ;
118
+ int ans = 0 ;
112
119
for (char c : s. toCharArray()) {
113
- res = res * 10 + (c - ' a' );
120
+ ans = ans * 10 + (c - ' a' );
114
121
}
115
- return res ;
122
+ return ans ;
116
123
}
117
124
}
118
125
```
@@ -123,27 +130,27 @@ class Solution {
123
130
class Solution {
124
131
public:
125
132
bool isSumEqual(string firstWord, string secondWord, string targetWord) {
133
+ auto f = [ ] (string& s) -> int {
134
+ int ans = 0;
135
+ for (char c : s) {
136
+ ans = ans * 10 + (c - 'a');
137
+ }
138
+ return ans;
139
+ };
126
140
return f(firstWord) + f(secondWord) == f(targetWord);
127
141
}
128
-
129
- int f(string s) {
130
- int res = 0;
131
- for (char c : s) res = res * 10 + (c - 'a');
132
- return res;
133
- }
134
142
};
135
143
```
136
144
137
145
#### Go
138
146
139
147
```go
140
148
func isSumEqual(firstWord string, secondWord string, targetWord string) bool {
141
- f := func (s string ) int {
142
- res := 0
149
+ f := func(s string) (ans int) {
143
150
for _, c := range s {
144
- res = res *10 + int (c-' a' )
151
+ ans = ans *10 + int(c-'a')
145
152
}
146
- return res
153
+ return
147
154
}
148
155
return f(firstWord)+f(secondWord) == f(targetWord)
149
156
}
@@ -153,31 +160,32 @@ func isSumEqual(firstWord string, secondWord string, targetWord string) bool {
153
160
154
161
``` ts
155
162
function isSumEqual(firstWord : string , secondWord : string , targetWord : string ): boolean {
156
- const calc = (s : string ) => {
157
- let res = 0 ;
163
+ const f = (s : string ): number => {
164
+ let ans = 0 ;
158
165
for (const c of s ) {
159
- res = res * 10 + c .charCodeAt (0 ) - ' a ' . charCodeAt ( 0 ) ;
166
+ ans = ans * 10 + c .charCodeAt (0 ) - 97 ;
160
167
}
161
- return res ;
168
+ return ans ;
162
169
};
163
- return calc (firstWord ) + calc (secondWord ) === calc (targetWord );
170
+ return f (firstWord ) + f (secondWord ) == f (targetWord );
164
171
}
165
172
```
166
173
167
174
#### Rust
168
175
169
176
``` rust
170
177
impl Solution {
171
- fn calc (s : & String ) -> i32 {
172
- let mut res = 0 ;
173
- for c in s . as_bytes () {
174
- res = res * 10 + ((c - b 'a' ) as i32 );
175
- }
176
- res
177
- }
178
-
179
178
pub fn is_sum_equal (first_word : String , second_word : String , target_word : String ) -> bool {
180
- Self :: calc (& first_word ) + Self :: calc (& second_word ) == Self :: calc (& target_word )
179
+ fn f (s : & str ) -> i64 {
180
+ let mut ans = 0 ;
181
+ let a = 'a' as i64 ;
182
+ for c in s . chars () {
183
+ let x = c as i64 - a ;
184
+ ans = ans * 10 + x ;
185
+ }
186
+ ans
187
+ }
188
+ f (& first_word ) + f (& second_word ) == f (& target_word )
181
189
}
182
190
}
183
191
```
@@ -192,30 +200,31 @@ impl Solution {
192
200
* @return {boolean}
193
201
*/
194
202
var isSumEqual = function (firstWord , secondWord , targetWord ) {
195
- function f ( s ) {
196
- let res = 0 ;
197
- for (let c of s) {
198
- res = res * 10 + ( c .charCodeAt () - ' a ' . charCodeAt ()) ;
203
+ const f = s => {
204
+ let ans = 0 ;
205
+ for (const c of s) {
206
+ ans = ans * 10 + c .charCodeAt (0 ) - 97 ;
199
207
}
200
- return res ;
201
- }
208
+ return ans ;
209
+ };
202
210
return f (firstWord) + f (secondWord) == f (targetWord);
203
211
};
204
212
```
205
213
206
214
#### C
207
215
208
216
``` c
209
- int calc (char* s) {
210
- int res = 0;
211
- for (int i = 0; s[ i] ; i++) {
212
- res = res * 10 + s[ i] - 'a';
217
+ int f (const char* s) {
218
+ int ans = 0;
219
+ while (* s) {
220
+ ans = ans * 10 + (* s - 'a');
221
+ s++;
213
222
}
214
- return res ;
223
+ return ans ;
215
224
}
216
225
217
226
bool isSumEqual(char* firstWord, char* secondWord, char* targetWord) {
218
- return calc (firstWord) + calc (secondWord) == calc (targetWord);
227
+ return f (firstWord) + f (secondWord) == f (targetWord);
219
228
}
220
229
```
221
230
0 commit comments