format and u9

This commit is contained in:
DavidOnTop 2024-12-06 09:15:40 +01:00
parent b8cfc80d1b
commit f1b2a8c9ba
No known key found for this signature in database
GPG key ID: 5D05538A45D5149F
11 changed files with 114 additions and 84 deletions

View file

@ -7,7 +7,7 @@ Poznámka: Palindróm je slovo, veta, číslo (všeobecne akákoľvek postupnos
pub fn main() {
let mut input = String::new();
std::io::stdin().read_line(&mut input).unwrap();
println!("{}", palindrome(input.trim().to_string()));
}