rust-comp-snippets icon indicating copy to clipboard operation
rust-comp-snippets copied to clipboard

Library for competitive programming in Rust.

Results 2 rust-comp-snippets issues
Sort by recently updated
recently updated
newest added

I think the upper bound should be `=n_max` ```rust fn comb_table(n_max: usize) -> Vec { let mut dp = vec![vec![0; n_max+1]; n_max+1]; for i in 0..n_max { ```

bug