Skip to content

Commit

Permalink
57: Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
sankichi92 committed Dec 29, 2023
1 parent f738a44 commit 82d991a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion 57-letter-combinations-of-a-phone-number/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ pub fn letter_combinations(digits: String) -> Vec<String> {
.skip(1)
.map(|char| digit_to_letters.get(&char).unwrap().clone())
.fold(init, |results, letters| {
println!("{:?}, {:?}", results, letters);
let mut new_results = vec![];
for str in results {
for letter in letters.iter() {
Expand Down

0 comments on commit 82d991a

Please sign in to comment.