/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package vision; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.Arrays; /** * * @author cteam044 */ public class Vision { public static int[] Add(int[] point, int[] vector){ int[] addition = {point[0]+vector[0], point[1]+vector[1]}; return addition; } /** * @param args the command line arguments */ public static void main(String[] args) { try(BufferedReader br = new BufferedReader(new InputStreamReader(System.in))){ int n_points = Integer.parseInt(br.readLine()); ArrayList points = new ArrayList(); ArrayList possibleVectors = new ArrayList() ; //nahrajeme stars for (int i = 0; i points = new ArrayList(); ArrayList possibleVectors = new ArrayList() ; //nahrajeme stars for (int i = 0; i