Search:

Type: Posts; User: JBow94

Search: Search took 0.49 seconds.

  1. Re: How to merge an int array then put it in ascending order without any Java APIs

    Thanks for the replies! I will check into those.

    To provide more insight on the thread, the numbers aren't in any order. What the function merge is supposed to do is:

    combine both arrays into...
  2. How to merge an int array then put it in ascending order without any Java APIs

    This is what I have:

    package challengespackage;

    public class ArrayMerge {

    public static void main(String[] args) {
    System.out.print(merge(new int[] { 9, 3, 0 }, new int[] { 4, 7, 8 }));...
Results 1 to 2 of 2