Skip to content

Commit

Permalink
remove unused method at JollyJumper
Browse files Browse the repository at this point in the history
  • Loading branch information
fatosmorina committed Apr 8, 2017
1 parent 9d2d330 commit 8005d6c
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions UVa/JollyJumper.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,4 @@ public static void main(String[] args) {
}
}

public static int findMaximalElement(int[] numbers) {
int max = numbers[0];
for (int i = 1; i < numbers.length; i++) {
if (max < numbers[i]) {
max = numbers[i];
}
}
return max;
}

}

0 comments on commit 8005d6c

Please sign in to comment.