Skip to content

Commit 7b50f21

Browse files
Update src/dynamic_programming/subset_sum.rs
Co-authored-by: Copilot <[email protected]>
1 parent a2fe724 commit 7b50f21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dynamic_programming/subset_sum.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
/// Uses dynamic programming to solve the subset sum problem.
66
///
77
/// # Arguments
8-
/// * arr - A slice of integers representing the input array
9-
/// * required_sum - The target sum to check for
8+
/// * `arr` - A slice of integers representing the input array.
9+
/// * `required_sum` - The target sum to check for.
1010
///
1111
/// # Returns
1212
/// * A boolean indicating whether a subset exists that sums to the target

0 commit comments

Comments
 (0)