(String[] args)
| 4 | |
| 5 | public class Leetcode136 { |
| 6 | public static void main(String[] args) { |
| 7 | int[] arr={4,1,2,1,2}; |
| 8 | int ans=uniqueNumber(arr); |
| 9 | System.out.println(ans); |
| 10 | } |
| 11 | |
| 12 | static int uniqueNumber(int[] arr){ |
| 13 | int answer=0; |
nothing calls this directly
no test coverage detected