update 0860.柠檬水找零 :添加复杂度分析

This commit is contained in:
Yuhao Ju
2023-04-11 00:37:48 +08:00
committed by GitHub
parent 25bf0859a1
commit 4c7464fa93

View File

@ -115,6 +115,9 @@ public:
}
};
```
* 时间复杂度: O(n)
* 空间复杂度: O(1)
## 总结