| Title | Topics | Action | |||
|---|---|---|---|---|---|
| 172 | Write a Generic Printer MethodComplete the generic static method `printItem` inside the `Printer` class. It ta... | easy | ○ Not Started | GenericsMethods | Solve |
| 175 | Return the First Item from a Generic ArrayComplete the generic method `getFirst` that takes an array of any type and retur... | easy | ○ Not Started | GenericsMethods | Solve |
| 177 | Write a Generic Method to Print Two ItemsComplete the generic static method `printTwoItems` that takes two values of the ... | easy | ○ Not Started | GenericsMethods | Solve |
| 178 | Store Three Generic Items in an ArrayListComplete the method `buildList` so it creates an `ArrayList<T>`, adds the three ... | easy | ○ Not Started | GenericsMethods | Solve |
| 180 | Check If Two Generic Values Are EqualComplete the generic method `areEqual` that returns `true` if two values are equ... | easy | ○ Not Started | GenericsMethods | Solve |
| 189 | Return the Middle Item from Three Generic ValuesComplete the generic method `getMiddle` that receives three values of the same t... | easy | ○ Not Started | GenericsMethods | Solve |
| 148 | Power of Two Using RecursionRead an integer n (at least 1). Complete the twoPow(int n) method to calculate 2... | medium | ○ Not Started | Methods | Solve |
| 179 | Count Matching Generic ValuesComplete the generic method `countMatches` that takes an array and a target valu... | medium | ○ Not Started | GenericsMethods | Solve |
| 182 | Return the Last Item from a Generic ArrayListComplete the generic method `getLastItem` that takes an `ArrayList<T>` and retur... | medium | ○ Not Started | GenericsMethods | Solve |
| 183 | Create a Generic Method That Repeats a ValueComplete the generic method `repeatValue` that takes a value and a count, then r... | medium | ○ Not Started | GenericsMethods | Solve |
| 184 | Find the Index of a Generic ValueComplete the generic method `findIndex` that searches an array for a target valu... | medium | ○ Not Started | GenericsMethods | Solve |
| 186 | Copy a Generic Value into a BoxComplete the generic method `copyIntoBox` in the `BoxTools` class. It receives a... | medium | ○ Not Started | GenericsMethods | Solve |
| 187 | Create a Generic Method to Print an ArrayComplete the generic method `printArray` that takes an array of any type and pri... | medium | ○ Not Started | GenericsMethods | Solve |