Skip to content

Commit fff7ed1

Browse files
authored
feat: add rust solution to lc problem: No.2591 (#1176)
1 parent bd22bc9 commit fff7ed1

File tree

3 files changed

+61
-0
lines changed

3 files changed

+61
-0
lines changed

solution/2500-2599/2591.Distribute Money to Maximum Children/README.md

+22
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,28 @@ function distMoney(money: number, children: number): number {
161161
}
162162
```
163163

164+
### **Rust**
165+
166+
```rust
167+
impl Solution {
168+
pub fn dist_money(money: i32, children: i32) -> i32 {
169+
if money < children {
170+
return -1
171+
}
172+
173+
if money > children * 8 {
174+
return children - 1
175+
}
176+
177+
if money == children * 8 - 4 {
178+
return children - 2
179+
}
180+
181+
(money - children) / 7
182+
}
183+
}
184+
```
185+
164186
### **...**
165187

166188
```

solution/2500-2599/2591.Distribute Money to Maximum Children/README_EN.md

+22
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,28 @@ function distMoney(money: number, children: number): number {
153153
}
154154
```
155155

156+
### **Rust**
157+
158+
```rust
159+
impl Solution {
160+
pub fn dist_money(money: i32, children: i32) -> i32 {
161+
if money < children {
162+
return -1
163+
}
164+
165+
if money > children * 8 {
166+
return children - 1
167+
}
168+
169+
if money == children * 8 - 4 {
170+
return children - 2
171+
}
172+
173+
(money - children) / 7
174+
}
175+
}
176+
```
177+
156178
### **...**
157179

158180
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
impl Solution {
2+
pub fn dist_money(money: i32, children: i32) -> i32 {
3+
if money < children {
4+
return -1
5+
}
6+
7+
if money > children * 8 {
8+
return children - 1
9+
}
10+
11+
if money == children * 8 - 4 {
12+
return children - 2
13+
}
14+
15+
(money - children) / 7
16+
}
17+
}

0 commit comments

Comments
 (0)