Search:

Type: Posts; User: newbie_in_java

Search: Search took 0.07 seconds.

  1. Replies
    3
    Views
    913

    Re: Problem with LinearArray

    public class LinearArray {

    private int data[];
    private static Random generator = new Random();

    public LinearArray(int size) {
    data = new int[size];
    for (int i =...
  2. Replies
    3
    Views
    913

    Problem with LinearArray

    Welcome, people :)

    I have a problem connected with LinearArray. I can search elements with this method but I have a problem with repeated elements. For example, I have elements 1 2 3 1. When I...
Results 1 to 2 of 2