(String[] args)
| 2 | |
| 3 | public class Leetcode476 { |
| 4 | public static void main(String[] args) { |
| 5 | int n = 5; |
| 6 | int ans = compliment(n); |
| 7 | System.out.println(ans); |
| 8 | } |
| 9 | |
| 10 | static int compliment(int n) { |
| 11 | return ~n; |
nothing calls this directly
no test coverage detected