Skip to content

Commit d0569fd

Browse files
committed
complexity style added
1 parent f60402f commit d0569fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dsa-solutions/gfg-solutions/0003-kadane's-algorithm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ class Solution:
250250
```
251251

252252
#### Complexity:
253-
- Time Complexity: $(O(N))$, where O(N)$ is the size of the array as we are looping once over the whole array.
253+
- Time Complexity: $(O(N))$, where $O(N)$ is the size of the array as we are looping once over the whole array.
254254
- Space Complexity: $(O(1))$, Here we are not using extra space.
255255

256256
## Conclusion

0 commit comments

Comments
 (0)