(String[] args)
| 2 | |
| 3 | public class Leetcode190 { |
| 4 | public static void main(String[] args) { |
| 5 | int n = 25; |
| 6 | int answer = reverseBits(n); |
| 7 | System.out.println(answer); |
| 8 | } |
| 9 | |
| 10 | static int reverseBit(int n) { |
| 11 | int rev = 0; |
nothing calls this directly
no test coverage detected