Search:

Type: Posts; User: eyp

Search: Search took 0.10 seconds.

  1. Replies
    2
    Views
    2,315

    Re: Help with ArrayList

    Have you read about java.util.Set?, take a look then refactor your code.
  2. Replies
    6
    Views
    2,440

    Re: Help with Character arrays

    You can do something like this... I think you don't need any String either a char[].


    public static String getDigits( Character[] array ) {
    if (array.length == 0) {
    ...
  3. Replies
    6
    Views
    2,440

    Re: Help with Character arrays

    That won't compile, you're assigning a char[] to char.
Results 1 to 3 of 3