(List<Integer> Y)
| 460 | } |
| 461 | |
| 462 | public static int max(List<Integer> Y) { |
| 463 | int max = 0; |
| 464 | for (int y : Y) max = Math.max(max, y); |
| 465 | return max; |
| 466 | } |
| 467 | |
| 468 | public static int sum(int[] a) { |
| 469 | int s = 0; |
no outgoing calls
no test coverage detected