Leetcode day 2 and 3

This commit is contained in:
2026-01-29 01:04:37 +05:30
parent 245116d181
commit 2ee49ea476
15 changed files with 204 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
INT_MAX, INT_MIN are called integer limit macros or more generally type limit constants.(compile-time constants)
defined in #include <climits>
Modern Alternative:
#include <limits>
numeric_limits<int>::max();
numeric_limits<int>::min();
int maxInt = std::numeric_limits<int>::max();