320x100 728x90 회문문자열1 java] 회문 문자열 체크(팰린드롬) 회문 문자열이란? 앞으로 읽거나 뒤로 읽어도 같은 문자임을 뜻한다. ex:) abcba goodoog 예를 들면 이런 문자들이다. 입력받은 문자열이 회문 문자열임을 체크하는 알고리즘 public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("회문 문자열 체크"); System.out.println(solution(sc.nextLine().toUpperCase())); } public static boolean solution(String input) { return input.equals(new StringBuilder(input).reverse().to.. 2021. 9. 6. 이전 1 다음 300x250 320x100