(String[] args)
| 20 | } |
| 21 | |
| 22 | public static void main(String[] args) { |
| 23 | int a = 23432; |
| 24 | int b = 512132; |
| 25 | System.out.println(a + ": " + AssortedMethods.toFullBinaryString(a)); |
| 26 | System.out.println(b + ": " + AssortedMethods.toFullBinaryString(b)); |
| 27 | int nbits = bitSwapRequired(a, b); |
| 28 | int nbits2 = bitSwapRequired2(a, b); |
| 29 | System.out.println("Required number of bits: " + nbits + " " + nbits2); |
| 30 | } |
| 31 | } |
nothing calls this directly
no test coverage detected