Skip to content

Commit 5b1560e

Browse files
committed
feat: add solutions to lc problem: No.0238
No.0238.Product of Array Except Self
1 parent 7b1e638 commit 5b1560e

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

solution/0200-0299/0238.Product of Array Except Self/README.md

+28
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,14 @@ function productExceptSelf(nums: number[]): number[] {
127127
}
128128
```
129129

130+
```ts
131+
function productExceptSelf(nums: number[]): number[] {
132+
return nums.map((_, i) =>
133+
nums.reduce((pre, val, j) => pre * (i === j ? 1 : val), 1),
134+
);
135+
}
136+
```
137+
130138
### **Go**
131139

132140
利用前缀和思想,分别求出 `i` 左右两侧的乘积
@@ -206,6 +214,26 @@ impl Solution {
206214
}
207215
```
208216

217+
```rust
218+
impl Solution {
219+
pub fn product_except_self(nums: Vec<i32>) -> Vec<i32> {
220+
let n = nums.len();
221+
let mut l = 1;
222+
let mut r = 1;
223+
let mut res = vec![0; n];
224+
for i in 0..n {
225+
res[i] = l;
226+
l *= nums[i];
227+
}
228+
for i in (0..n).rev() {
229+
res[i] *= r;
230+
r *= nums[i];
231+
}
232+
res
233+
}
234+
}
235+
```
236+
209237
### **...**
210238

211239
```

solution/0200-0299/0238.Product of Array Except Self/README_EN.md

+28
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,14 @@ function productExceptSelf(nums: number[]): number[] {
109109
}
110110
```
111111

112+
```ts
113+
function productExceptSelf(nums: number[]): number[] {
114+
return nums.map((_, i) =>
115+
nums.reduce((pre, val, j) => pre * (i === j ? 1 : val), 1),
116+
);
117+
}
118+
```
119+
112120
### **Go**
113121

114122
```go
@@ -186,6 +194,26 @@ impl Solution {
186194
}
187195
```
188196

197+
```rust
198+
impl Solution {
199+
pub fn product_except_self(nums: Vec<i32>) -> Vec<i32> {
200+
let n = nums.len();
201+
let mut l = 1;
202+
let mut r = 1;
203+
let mut res = vec![0; n];
204+
for i in 0..n {
205+
res[i] = l;
206+
l *= nums[i];
207+
}
208+
for i in (0..n).rev() {
209+
res[i] *= r;
210+
r *= nums[i];
211+
}
212+
res
213+
}
214+
}
215+
```
216+
189217
### **...**
190218

191219
```

0 commit comments

Comments
 (0)