Skip to content

Commit 73e5c69

Browse files
authored
feat: add solutions to lc problems: No.1880,1881 (#4042)
1 parent 8ce5ad2 commit 73e5c69

File tree

22 files changed

+431
-302
lines changed

22 files changed

+431
-302
lines changed

solution/1800-1899/1880.Check if Word Equals Summation of Two Words/README.md

+54-45
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,13 @@ targetWord 的数值为 "aaaa" -> "0000" -> 0
7979

8080
<!-- solution:start -->
8181

82-
### 方法一
82+
### 方法一:字符串转数字
83+
84+
我们定义一个函数 $\textit{f}(s)$,用来计算字符串 $s$ 的数值。对于字符串 $s$ 中的每个字符 $c$,我们将其转换为对应的数字 $x$,然后将 $x$ 依次连接起来,最后转换为整数。
85+
86+
最后,我们只需要判断 $\textit{f}(\textit{firstWord}) + \textit{f}(\textit{secondWord})$ 是否等于 $\textit{f}(\textit{targetWord})$ 即可。
87+
88+
时间复杂度 $O(L)$,其中 $L$ 为题目中所有字符串的长度之和。空间复杂度 $O(1)$。
8389

8490
<!-- tabs:start -->
8591

@@ -88,11 +94,12 @@ targetWord 的数值为 "aaaa" -&gt; "0000" -&gt; 0
8894
```python
8995
class Solution:
9096
def isSumEqual(self, firstWord: str, secondWord: str, targetWord: str) -> bool:
91-
def f(s):
92-
res = 0
93-
for c in s:
94-
res = res * 10 + (ord(c) - ord('a'))
95-
return res
97+
def f(s: str) -> int:
98+
ans, a = 0, ord("a")
99+
for c in map(ord, s):
100+
x = c - a
101+
ans = ans * 10 + x
102+
return ans
96103

97104
return f(firstWord) + f(secondWord) == f(targetWord)
98105
```
@@ -106,11 +113,11 @@ class Solution {
106113
}
107114

108115
private int f(String s) {
109-
int res = 0;
116+
int ans = 0;
110117
for (char c : s.toCharArray()) {
111-
res = res * 10 + (c - 'a');
118+
ans = ans * 10 + (c - 'a');
112119
}
113-
return res;
120+
return ans;
114121
}
115122
}
116123
```
@@ -121,27 +128,27 @@ class Solution {
121128
class Solution {
122129
public:
123130
bool isSumEqual(string firstWord, string secondWord, string targetWord) {
131+
auto f = [](string& s) -> int {
132+
int ans = 0;
133+
for (char c : s) {
134+
ans = ans * 10 + (c - 'a');
135+
}
136+
return ans;
137+
};
124138
return f(firstWord) + f(secondWord) == f(targetWord);
125139
}
126-
127-
int f(string s) {
128-
int res = 0;
129-
for (char c : s) res = res * 10 + (c - 'a');
130-
return res;
131-
}
132140
};
133141
```
134142
135143
#### Go
136144
137145
```go
138146
func isSumEqual(firstWord string, secondWord string, targetWord string) bool {
139-
f := func(s string) int {
140-
res := 0
147+
f := func(s string) (ans int) {
141148
for _, c := range s {
142-
res = res*10 + int(c-'a')
149+
ans = ans*10 + int(c-'a')
143150
}
144-
return res
151+
return
145152
}
146153
return f(firstWord)+f(secondWord) == f(targetWord)
147154
}
@@ -151,31 +158,32 @@ func isSumEqual(firstWord string, secondWord string, targetWord string) bool {
151158

152159
```ts
153160
function isSumEqual(firstWord: string, secondWord: string, targetWord: string): boolean {
154-
const calc = (s: string) => {
155-
let res = 0;
161+
const f = (s: string): number => {
162+
let ans = 0;
156163
for (const c of s) {
157-
res = res * 10 + c.charCodeAt(0) - 'a'.charCodeAt(0);
164+
ans = ans * 10 + c.charCodeAt(0) - 97;
158165
}
159-
return res;
166+
return ans;
160167
};
161-
return calc(firstWord) + calc(secondWord) === calc(targetWord);
168+
return f(firstWord) + f(secondWord) == f(targetWord);
162169
}
163170
```
164171

165172
#### Rust
166173

167174
```rust
168175
impl Solution {
169-
fn calc(s: &String) -> i32 {
170-
let mut res = 0;
171-
for c in s.as_bytes() {
172-
res = res * 10 + ((c - b'a') as i32);
173-
}
174-
res
175-
}
176-
177176
pub fn is_sum_equal(first_word: String, second_word: String, target_word: String) -> bool {
178-
Self::calc(&first_word) + Self::calc(&second_word) == Self::calc(&target_word)
177+
fn f(s: &str) -> i64 {
178+
let mut ans = 0;
179+
let a = 'a' as i64;
180+
for c in s.chars() {
181+
let x = c as i64 - a;
182+
ans = ans * 10 + x;
183+
}
184+
ans
185+
}
186+
f(&first_word) + f(&second_word) == f(&target_word)
179187
}
180188
}
181189
```
@@ -190,30 +198,31 @@ impl Solution {
190198
* @return {boolean}
191199
*/
192200
var isSumEqual = function (firstWord, secondWord, targetWord) {
193-
function f(s) {
194-
let res = 0;
195-
for (let c of s) {
196-
res = res * 10 + (c.charCodeAt() - 'a'.charCodeAt());
201+
const f = s => {
202+
let ans = 0;
203+
for (const c of s) {
204+
ans = ans * 10 + c.charCodeAt(0) - 97;
197205
}
198-
return res;
199-
}
206+
return ans;
207+
};
200208
return f(firstWord) + f(secondWord) == f(targetWord);
201209
};
202210
```
203211

204212
#### C
205213

206214
```c
207-
int calc(char* s) {
208-
int res = 0;
209-
for (int i = 0; s[i]; i++) {
210-
res = res * 10 + s[i] - 'a';
215+
int f(const char* s) {
216+
int ans = 0;
217+
while (*s) {
218+
ans = ans * 10 + (*s - 'a');
219+
s++;
211220
}
212-
return res;
221+
return ans;
213222
}
214223

215224
bool isSumEqual(char* firstWord, char* secondWord, char* targetWord) {
216-
return calc(firstWord) + calc(secondWord) == calc(targetWord);
225+
return f(firstWord) + f(secondWord) == f(targetWord);
217226
}
218227
```
219228

solution/1800-1899/1880.Check if Word Equals Summation of Two Words/README_EN.md

+56-47
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ We return true because 21 + 210 == 231.
4848
<pre>
4949
<strong>Input:</strong> firstWord = &quot;aaa&quot;, secondWord = &quot;a&quot;, targetWord = &quot;aab&quot;
5050
<strong>Output:</strong> false
51-
<strong>Explanation:</strong>
51+
<strong>Explanation:</strong>
5252
The numerical value of firstWord is &quot;aaa&quot; -&gt; &quot;000&quot; -&gt; 0.
5353
The numerical value of secondWord is &quot;a&quot; -&gt; &quot;0&quot; -&gt; 0.
5454
The numerical value of targetWord is &quot;aab&quot; -&gt; &quot;001&quot; -&gt; 1.
@@ -60,7 +60,7 @@ We return false because 0 + 0 != 1.
6060
<pre>
6161
<strong>Input:</strong> firstWord = &quot;aaa&quot;, secondWord = &quot;a&quot;, targetWord = &quot;aaaa&quot;
6262
<strong>Output:</strong> true
63-
<strong>Explanation:</strong>
63+
<strong>Explanation:</strong>
6464
The numerical value of firstWord is &quot;aaa&quot; -&gt; &quot;000&quot; -&gt; 0.
6565
The numerical value of secondWord is &quot;a&quot; -&gt; &quot;0&quot; -&gt; 0.
6666
The numerical value of targetWord is &quot;aaaa&quot; -&gt; &quot;0000&quot; -&gt; 0.
@@ -81,7 +81,13 @@ We return true because 0 + 0 == 0.
8181

8282
<!-- solution:start -->
8383

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)$.
8591

8692
<!-- tabs:start -->
8793

@@ -90,11 +96,12 @@ We return true because 0 + 0 == 0.
9096
```python
9197
class Solution:
9298
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
98105

99106
return f(firstWord) + f(secondWord) == f(targetWord)
100107
```
@@ -108,11 +115,11 @@ class Solution {
108115
}
109116

110117
private int f(String s) {
111-
int res = 0;
118+
int ans = 0;
112119
for (char c : s.toCharArray()) {
113-
res = res * 10 + (c - 'a');
120+
ans = ans * 10 + (c - 'a');
114121
}
115-
return res;
122+
return ans;
116123
}
117124
}
118125
```
@@ -123,27 +130,27 @@ class Solution {
123130
class Solution {
124131
public:
125132
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+
};
126140
return f(firstWord) + f(secondWord) == f(targetWord);
127141
}
128-
129-
int f(string s) {
130-
int res = 0;
131-
for (char c : s) res = res * 10 + (c - 'a');
132-
return res;
133-
}
134142
};
135143
```
136144
137145
#### Go
138146
139147
```go
140148
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) {
143150
for _, c := range s {
144-
res = res*10 + int(c-'a')
151+
ans = ans*10 + int(c-'a')
145152
}
146-
return res
153+
return
147154
}
148155
return f(firstWord)+f(secondWord) == f(targetWord)
149156
}
@@ -153,31 +160,32 @@ func isSumEqual(firstWord string, secondWord string, targetWord string) bool {
153160

154161
```ts
155162
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;
158165
for (const c of s) {
159-
res = res * 10 + c.charCodeAt(0) - 'a'.charCodeAt(0);
166+
ans = ans * 10 + c.charCodeAt(0) - 97;
160167
}
161-
return res;
168+
return ans;
162169
};
163-
return calc(firstWord) + calc(secondWord) === calc(targetWord);
170+
return f(firstWord) + f(secondWord) == f(targetWord);
164171
}
165172
```
166173

167174
#### Rust
168175

169176
```rust
170177
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-
179178
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)
181189
}
182190
}
183191
```
@@ -192,30 +200,31 @@ impl Solution {
192200
* @return {boolean}
193201
*/
194202
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;
199207
}
200-
return res;
201-
}
208+
return ans;
209+
};
202210
return f(firstWord) + f(secondWord) == f(targetWord);
203211
};
204212
```
205213

206214
#### C
207215

208216
```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++;
213222
}
214-
return res;
223+
return ans;
215224
}
216225

217226
bool isSumEqual(char* firstWord, char* secondWord, char* targetWord) {
218-
return calc(firstWord) + calc(secondWord) == calc(targetWord);
227+
return f(firstWord) + f(secondWord) == f(targetWord);
219228
}
220229
```
221230
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
int calc(char* s) {
2-
int res = 0;
3-
for (int i = 0; s[i]; i++) {
4-
res = res * 10 + s[i] - 'a';
1+
int f(const char* s) {
2+
int ans = 0;
3+
while (*s) {
4+
ans = ans * 10 + (*s - 'a');
5+
s++;
56
}
6-
return res;
7+
return ans;
78
}
89

910
bool isSumEqual(char* firstWord, char* secondWord, char* targetWord) {
10-
return calc(firstWord) + calc(secondWord) == calc(targetWord);
11-
}
11+
return f(firstWord) + f(secondWord) == f(targetWord);
12+
}

0 commit comments

Comments
 (0)