mirror of
https://github.com/krahets/hello-algo.git
synced 2026-09-22 14:26:34 +08:00
Bug fixes and improvements (#1813)
* Sync zh and zh-hant version. * Add the Warp sponsor banner. * Update README with acknowledgments and Warp recommendation Added acknowledgments and a recommendation for the Warp terminal application. * Update README.md * Update links in README.md to use HTTPS * Sync zh and zh-hant versions. * Add special thanks for Warp spnsorship. * Use official warp image link.
This commit is contained in:
@@ -12,7 +12,7 @@ int myMin(int a, int b) {
|
||||
}
|
||||
/* 求最大值 */
|
||||
int myMax(int a, int b) {
|
||||
return a < b ? a : b;
|
||||
return a > b ? a : b;
|
||||
}
|
||||
|
||||
/* 最大容量:貪婪 */
|
||||
|
||||
Reference in New Issue
Block a user