Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add rust solution to lc problem: No.0287 #1648

Merged
merged 2 commits into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat: add rust solution to lc problem: No.0287
  • Loading branch information
xzhseh committed Sep 19, 2023
commit 75b7aa25a1c8e65917da2aab7ed819dab90afce2
27 changes: 27 additions & 0 deletions solution/0200-0299/0287.Find the Duplicate Number/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,33 @@ public:
};
```

### **Rust**

```rust
impl Solution {
#[allow(dead_code)]
pub fn find_duplicate(nums: Vec<i32>) -> i32 {
let mut left = 0;
let mut right = nums.len() - 1;

while left < right {
let mid = (left + right) >> 1;
let cnt = nums
.iter()
.filter(|x| **x <= mid as i32)
.count();
if cnt > mid {
right = mid;
} else {
left = mid + 1;
}
}

left as i32
}
}
```

### **Go**

```go
Expand Down
27 changes: 27 additions & 0 deletions solution/0200-0299/0287.Find the Duplicate Number/README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,33 @@ public:
};
```

### **Rust**

```rust
impl Solution {
#[allow(dead_code)]
pub fn find_duplicate(nums: Vec<i32>) -> i32 {
let mut left = 0;
let mut right = nums.len() - 1;

while left < right {
let mid = (left + right) >> 1;
let cnt = nums
.iter()
.filter(|x| **x <= mid as i32)
.count();
if cnt > mid {
right = mid;
} else {
left = mid + 1;
}
}

left as i32
}
}
```

### **Go**

```go
Expand Down
22 changes: 22 additions & 0 deletions solution/0200-0299/0287.Find the Duplicate Number/Solution.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
impl Solution {
#[allow(dead_code)]
pub fn find_duplicate(nums: Vec<i32>) -> i32 {
let mut left = 0;
let mut right = nums.len() - 1;

while left < right {
let mid = (left + right) >> 1;
let cnt = nums
.iter()
.filter(|x| **x <= mid as i32)
.count();
if cnt > mid {
right = mid;
} else {
left = mid + 1;
}
}

left as i32
}
}