Update 0035.搜索插入位置.md

195行把空间复杂度写成时间复杂度了
This commit is contained in:
Mrzhugq
2023-04-30 16:45:31 +08:00
committed by GitHub
parent 66ad8c156d
commit 113d1192a9

View File

@ -191,8 +191,8 @@ public:
};
```
* 时间复杂度:$O(\log n)$
* 间复杂度:$O(1)$
* 时间复杂度O(log n)
* 间复杂度O(1)
## 总结