Guest User

Untitled

a guest
Oct 11th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public static void main(String[] args) {
  2. CirclesCountry country = new CirclesCountry();
  3. int[] x = {0,-6,6};
  4. int[] y = {0,1,2};
  5. int[] r = {2,2,2};
  6. int x1 = -5;
  7. int y1= 1;
  8. int x2= 5;
  9. int y2 =1;
  10. country.leastBorders(x, y, r, x1, y1,x2,y2);
  11. }
  12.  
  13. public int leastBorders(int[] x, int[] y, int[] r,
  14. int x1, int y1, int x2, int y2) {
  15. // you write code here
  16. }
Add Comment
Please, Sign In to add comment