Selaa lähdekoodia

Update README.md

Git-Leon 6 vuotta sitten
vanhempi
commit
74a9673e36
No account linked to committer's email
1 muutettua tiedostoa jossa 2 lisäystä ja 0 poistoa
  1. 2
    0
      README.md

+ 2
- 0
README.md Näytä tiedosto

16
 ## Instructions:
16
 ## Instructions:
17
 
17
 
18
 ### Building a basic `PhoneBook` class
18
 ### Building a basic `PhoneBook` class
19
+
19
 <img src = "./PhoneBookUML.png">
20
 <img src = "./PhoneBookUML.png">
21
+
20
 * Create a `PhoneBook` class that holds names and phone numbers.
22
 * Create a `PhoneBook` class that holds names and phone numbers.
21
 * You can use an [associative data type](https://en.wikipedia.org/wiki/Associative_array) (one which stores items as keys paired with values).
23
 * You can use an [associative data type](https://en.wikipedia.org/wiki/Associative_array) (one which stores items as keys paired with values).
22
 * **Hint:** You should use a sorted map.
24
 * **Hint:** You should use a sorted map.