(Print) Use this randomly generated list as your call list when playing the game. There is no need to say the BINGO column name. Place some kind of mark (like an X, a checkmark, a dot, tally mark, etc) on each cell as you announce it, to keep track. You can also cut out each item, place them in a bag and pull words from the bag.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Are there any packages you need to import to use Maps, Sets, and ArrayLists?
What is the method used to add an item to a Map?
How do you create a new instance of a Set?
A structure which stores unique elements in random order.
What is the time complexity of retrieving an item from an ArrayList?
What is the difference between a HashSet and a TreeSet?
What is an example of a sorting where Comparable would be used?
A structure which stores objects in an order specified by the user, where an index can be used to retrieve an object.
What is an example of a sorting where Comparator would be used?
An interface which allows us to sort members of a class in a natural ordering.
What is the time complexity of retrieving an item from a Map?
What is an example where a Map would be the best data structure?
What is the signature of the compareTo method?
Can you use Comparable and Comparator for the same class?
To which interface does the compareTo method belong?
An interface which allows us to sort members of a class in an "unnatural" ordering.
What structure from Python is Map most similar to?
What structure from Python is ArrayList most similar to?
What is the method used to add an item to a Set?
What is the signature of the compare method?
What is the difference between comparable and comparator?
What is the difference between a HashMap and a TreeMap?
To which interface does the compare method belong?
What is an example where an ArrayList would be the best data structure?
What is the time complexity of adding an item to a Set?
What are the fields that Maps, Sets, and ArrayLists have in common?
What is the method used to remove an item from a Set?
What is an example where a Set would be the best data structure?
What is the standard convention when increasing the size of an ArrayList?
What is the time complexity of adding an item to a Map
What is the time complexity of retrieving an item from a Set?
How do you create a new instance of a Map?
What is the time complexity of adding an item to an ArrayList?
What is the method used to remove an item from a Map?
A structure which stores objects in a key value pair where the key retrieves the value from the structure.