List, Maps, and Sets

Store a collection of objects using a single variable


#NameDescriptionStatus
1Intro to CollectionsThe first step in a beautiful journey Not Started
2List - IntroductionAn introduction to the List collection Not Started
3List - ConstructionConstructing Lists Not Started
4List - IndexAccessing elements within the List Not Started
5List - Add ElementsAdd data to the List after initializing Not Started
6List - Add at an IndexAdd an element to the list at a specific index Not Started
7List - Replace ElementsOverride the element at an index Not Started
8List - Add AllAdd a list to another list Not Started
9List - Empty vs NullDetermine the difference between empty and null lists Not Started
10List - Clear and RemoveRemove elements from a list of just start from scratch Not Started
11List - Equality Check if two lists are the same Not Started
12List - Array Notation Check if two lists are the same Not Started
13Set - IntroductionLike Lists, but distinct! Not Started
14Set - Methods A lightning round of key methods with a Set Not Started
15Map - IntroductionBuckle your seatbelts Not Started
16Map - ConstructionDiscover the many ways to construct a Map Not Started
17Map - PutAdd key and value pairs to a Map Not Started
18Map - GetRetrieve the data in a Map Not Started
19Map - Remove and SizingDetermine the size of a map and remove pairs Not Started
20Map - Keyset and ValuesMaps were just Sets and Lists all along Not Started