Closed PavitraAgarwal21 closed 4 months ago
implementation of bnb Issue1 , Mutable reference of selected_coin is passed from &[usize] -> &mut Vec<usize> , changing the return type of private function bnb() ->Option<Vec<usize>>, adding exact match test .
&[usize] -> &mut Vec<usize>
bnb() ->Option<Vec<usize>>
Also make sure to run cargo fmt before pushing the code.
cargo fmt
implementation of bnb Issue1 , Mutable reference of selected_coin is passed from
&[usize] -> &mut Vec<usize>
, changing the return type of private functionbnb() ->Option<Vec<usize>>
, adding exact match test .