feat: 1512_number_of_good_pairs

This commit is contained in:
SquidSpirit 2025-08-19 22:30:30 +08:00
parent 925fee99af
commit 80bad5db79
3 changed files with 30 additions and 0 deletions

7
1512_number_of_good_pairs/Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "number_of_good_pairs"
version = "0.1.0"

View File

@ -0,0 +1,6 @@
[package]
name = "number_of_good_pairs"
version = "0.1.0"
edition = "2024"
[dependencies]

View File

@ -0,0 +1,17 @@
pub struct Solution;
impl Solution {
pub fn num_identical_pairs(nums: Vec<i32>) -> i32 {
let mut result = 0;
for i in 0..nums.len() {
for j in (i + 1)..nums.len() {
if nums[i] == nums[j] {
result += 1;
}
}
}
result
}
}