diff --git a/code_study/Baekjoon/java/_1509.java b/code_study/Baekjoon/java/_1509.java new file mode 100644 index 0000000..60dabfb --- /dev/null +++ b/code_study/Baekjoon/java/_1509.java @@ -0,0 +1,43 @@ +import java.util.*; + +public class _1509 { + public static void main(String[] args) { + Scanner sc = new Scanner(System.in); + String str = sc.nextLine(); + sc.close(); + + int L = str.length(); + boolean[][] isPalindrome = new boolean[L][L]; + for(int i=0; i