Skip to content

Commit 0095c36

Browse files
committed
Deployed 1007416 with MkDocs version: 1.0.4
1 parent c9600e3 commit 0095c36

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

19_python内置常用算法和数据结构/builtins/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ <h1 id="python-dict">python dict 技巧</h1>
422422
# 或者
423423
maxk, maxv = max(mydict.items(), key=lambda k: k[1])
424424

425-
# 支持默认值的有序字典 (OrderedDict and defaultdict)
425+
# 支持默认值的有序字典 (OrderedDict and defaultdict) (注意是 key 插入顺序不是字典序)
426426
# https://stackoverflow.com/questions/6190331/how-to-implement-an-ordered-default-dict
427427
od = OrderedDict() # collections.OrderedDict()
428428
od[i] = od.get(i, 0) + 1 # 间接实现了 defaultdict(int) ,同时保持了插入字典的 key 顺序

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,5 +602,5 @@ <h2 id="_22">本电子书制作和写作方式</h2>
602602

603603
<!--
604604
MkDocs version : 1.0.4
605-
Build Date UTC : 2022-04-28 10:22:45
605+
Build Date UTC : 2022-04-28 10:25:16
606606
-->

search/search_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

sitemap.xml.gz

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)