fix(processing bug): add '\n' string literal to avoid rejecting the right input binary code with a break line

This commit is contained in:
doryan 2024-08-15 23:31:09 +04:00
parent a7cf11737a
commit cedb844826

View File

@ -9,8 +9,8 @@ const ASCII_ZERO_CHAR_POSITION: u8 = 48;
pub fn processing_input(input: impl Into<String>) -> String {
input
.into()
.split_ascii_whitespace()
.filter(|&x| !x.is_empty())
.split(&[' ', '\n'][..])
.filter(|x| !x.is_empty())
.fold(String::new(), |c: String, n: &str| c + n)
}