import java.io.*; import java.util.*; public class Solution { public static boolean moreThanOnce(ArrayList list, int searched) { int numCount = 0; boolean more = false; for (int thisNum : list) { if (thisNum == searched) { numCount ++ ; } } if (numCount > 1) { more = true; } return more; } public static void main(String[] args) { /* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */ Scanner sc = new Scanner(System.in); int q=sc.nextInt(); for(int i=0;i x2 = new ArrayList(noofpoints); ArrayList< Integer> y2 = new ArrayList(noofpoints); for(int j=0;j