瀏覽代碼

Update README.md

Git-Leon 6 年之前
父節點
當前提交
388fd3275f
沒有帳戶連結到提交者的電子郵件
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      README.md

+ 2
- 2
README.md 查看文件

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
 * Create a `PhoneBook` class that holds names and phone numbers.
20
 * 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).
21
 * 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.
22
 * **Hint:** You should use a sorted map.
23
-* A UML of this class can be found [here](./PhoneBookUML.png)
23
+
24
 
24
 
25
 * Your PhoneBook class should have the following method
25
 * Your PhoneBook class should have the following method
26
 
26