(String[] args)
| 22 | } |
| 23 | |
| 24 | public static void main(String[] args) { |
| 25 | int[] cards = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; |
| 26 | System.out.println(AssortedMethods.arrayToString(cards)); |
| 27 | int[] set = pickMRandomly(cards, 4); |
| 28 | System.out.println(AssortedMethods.arrayToString(set)); |
| 29 | } |
| 30 | |
| 31 | } |
nothing calls this directly
no test coverage detected