Skip to content

Commit d01b9a3

Browse files
committed
Merge branch 'master' of github.com:PegasusWang/python_data_structures_and_algorithms
2 parents e325227 + 0eccaed commit d01b9a3

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ Python 抽象程度比较高, 我们能用更少的代码来实现功能,同
179179

180180

181181
## 本电子书制作和写作方式
182-
使用 mkdocs 和 markdown 构建,使用 Python-Markdown-Math 完成数学公式
182+
使用 mkdocs 和 markdown 构建,使用 Python-Markdown-Math 完成数学公式。
183+
markdown 语法参考:http://xianbai.me/learn-md/article/about/readme.html
183184

184185
安装依赖:
185186
```sh

docs/08_字典/dict.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ d[[1]] = 1
4545

4646
# 思考题:
4747
- 你能在哈希表的基础上实现 dict 的其他操作吗?
48-
- 对于 python 来说,哪些内置数据类型是可哈希的呢?
49-
- 你了解 python 的 hash 函数吗?
48+
- 对于 python 来说,哪些内置数据类型是可哈希的呢?list, dict, tuple, set 等类型哪些可以作为字典的 key 呢?
49+
- 你了解可变对象和不可变对象的区别吗?
50+
- 你了解 python 的 hash 函数吗?你了解 python 的`__hash__``__eq__` 魔术方法吗?它们何时被调用
5051

5152
# 延伸阅读
5253
阅读 python 文档关于 dict 的相关内容

0 commit comments

Comments
 (0)