(String[] args)
| 62 | } |
| 63 | |
| 64 | public static void main(String[] args) { |
| 65 | for (int i = 0; i < 10000; i++) { |
| 66 | int v1 = count2sR(i); |
| 67 | int v2 = count2sInRange(i); |
| 68 | System.out.println("Between 0 and " + i + ": " + v1 + " " + v2); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | } |
nothing calls this directly
no test coverage detected