Search:

Type: Posts; User: sanfor

Search: Search took 0.11 seconds.

  1. Replies
    2
    Views
    5,405

    Re: help: union of two array,.. kinda problem

    well.. thanks for the reply..
    i already had it..


    public static int[] union(int[] arr1,int[] arr2) {

    int[] arr3 = new int[arr1.length+arr2.length];

    System.arraycopy(arr1, 0, arr3, 0,...
  2. Replies
    2
    Views
    5,405

    help: union of two array,.. kinda problem

    hello guys..
    i'm new here.
    i am trying to do a function that unite two arrays.

    this is my code:

    arr4 = interSection = gets the intersection of the two arrays.

    arr1,arr2 = similar... =...
Results 1 to 2 of 2