Search:

Type: Posts; User: helloworld922

Search: Search took 0.08 seconds.

  1. Re: Problem with static method as parameter of super()

    You're removeDups method shouldn't access any static fields at all, instead it should operate on a local array. The method can then return that array, so your code would look something like this:

    ...
  2. Re: Problem with static method as parameter of super()

    Hmm, the only "reasonable" way I can think of solving this problem is to perform the remove duplicates operation twice: The first time is to satisfy the SortArray constructor requirements, and the...
Results 1 to 2 of 2