Skip to content

Commit fd47ae0

Browse files
Divakar-2508vil02
andauthored
Update src/compression/move_to_front.rs
Co-authored-by: Piotr Idzik <[email protected]>
1 parent 329f2d5 commit fd47ae0

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/compression/move_to_front.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// https://en.wikipedia.org/wiki/Move-to-front_transform
22

33
pub fn move_to_front_encode(text: &str) -> Vec<u8> {
4-
dbg!(text);
54
let mut char_table: Vec<char> = (0..=255).map(|ch| ch as u8 as char).collect();
65
let mut result = Vec::new();
76

0 commit comments

Comments
 (0)