ํฌํฌ์ธํฐ, ํ๋ฌธ ํ๋ณ
Solution rust soulution Memo ํฌํฌ์ธํฐ ํฐ๋ฆฐ๋๋กฌ ํ๋ณ ๋ฌธ์ ๋์ผํ ๋ก์ง์ ํฐ๋ฆฐ๋๋กฌ์ ๋๋ฒ ๊ตฌํํด์ ํ ๋ฌธ์๋ฅผ ์ ๊ฑฐํ๋๋ก ์์ ํ๋ค. // Baekjoon - 17609 // https://www.acmicpc.net/problem/17609 use std::io::{self, Read, Write}; fn main() { let mut stdin = io::stdin().lock(); let mut stdout = io::stdout().lock(); let mut input = String::new(); stdin.read_to_string(&mut input).unwrap(); let mut lines = input.lines(); let n: usize = lines.next().unwrap().parse().unwrap(); for _ in 0..n { let tmp = lines.next().unwrap(); let result = is_palindrome(tmp); writeln!...