Search:

Type: Posts; User: GStateSwish

Search: Search took 0.10 seconds.

  1. Replies
    1
    Views
    1,035

    Re: Well Ordered Sort function

    import java.util.Arrays;
    import java.util.Scanner;
    public class wellOrderSorter {
    private int startCount;
    private int maxCount;


    wellOrderSorter(int number)
    {
    ...
  2. Replies
    1
    Views
    1,035

    Well Ordered Sort function

    need to create a code that sorts for "well ordered numbers", ie (1<2<3 , 4<7<9.)

    Initially had trouble through the use of a string char evaluation being sufficient, changed it to OOP to complete...
Results 1 to 2 of 2