(ArrayList<BitInteger> array)
| 24 | |
| 25 | |
| 26 | public static int findMissing(ArrayList<BitInteger> array) { |
| 27 | return findMissing(array, BitInteger.INTEGER_SIZE - 1); |
| 28 | } |
| 29 | |
| 30 | private static int findMissing(ArrayList<BitInteger> input, int column) { |
| 31 | if (column < 0) { // Base case and error condition |