We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
public static void main(String[] args) {
int l = 0;
int f1 = 100;
int limit = 999;
int f2 =0;
int smallest = 0;
int[] arr;
Scanner in = new Scanner(System.in);
l = in.nextInt();
arr = new int[l];
for (int i = 0; i < l; i++) {
Project Euler #4: Largest palindrome product
You are viewing a single comment's thread. Return to all comments →
public class Solution {
// Pattern pttr = Pattern.compile("\d\d\d\d\d\d"); // Matcher m = pttr.matcher(String.valueOf()); // if (!m.matches()) { // // continue; // // } else { // // smallest = l; // //System.out.println(i); // //System.out.println(temp/i); // // // }
}