remove extra space (#1477)

* remove extra space

* Update max_capacity_problem.md

* Update algorithms_are_everywhere.md

---------

Co-authored-by: Yudong Jin <krahets@163.com>
This commit is contained in:
Seven Du
2024-08-06 15:04:53 +08:00
committed by GitHub
parent 0bff488383
commit fc7efa28a7
6 changed files with 6 additions and 6 deletions
@@ -8,7 +8,7 @@
1. 翻開字典約一半的頁數,檢視該頁的首字母是什麼,假設首字母為 $m$ 。
2. 由於在拼音字母表中 $r$ 位於 $m$ 之後,所以排除字典前半部分,查詢範圍縮小到後半部分。
3. 不斷重複步驟 `1.` 步驟 `2.` ,直至找到拼音首字母為 $r$ 的頁碼為止。
3. 不斷重複步驟 `1.` 和步驟 `2.` ,直至找到拼音首字母為 $r$ 的頁碼為止。
=== "<1>"
![查字典步驟](algorithms_are_everywhere.assets/binary_search_dictionary_step1.png)