This commit is contained in:
krahets
2023-07-21 15:14:40 +08:00
parent f4b32349c0
commit 2338b35039
9 changed files with 503 additions and 107 deletions
@@ -375,7 +375,7 @@ comments: true
int a = 0; // O(1)
int b[10000]; // O(1)
if (n > 10)
vector<int> nums(n); // O(n)
int nums[n] = {0}; // O(n)
}
```