A collection of LeetCode questions to ace the coding interview! - Created using LeetHub v2
| 3873-maximum-points-activated-with-one-addition |
| 3872-longest-arithmetic-sequence-after-changing-at-most-one-element |
| 0509-fibonacci-number |
| 0050-powx-n |
| 0231-power-of-two |
| 0326-power-of-three |
| 0509-fibonacci-number |
| 0509-fibonacci-number |
| 0231-power-of-two |
| 0003-longest-substring-without-repeating-characters |
| 0076-minimum-window-substring |
| 0412-fizz-buzz |
| 0424-longest-repeating-character-replacement |
| 0412-fizz-buzz |
| 0015-3sum |
| 0016-3sum-closest |
| 0075-sort-colors |
| 0977-squares-of-a-sorted-array |
| 1365-how-many-numbers-are-smaller-than-the-current-number |
| 1365-how-many-numbers-are-smaller-than-the-current-number |
| 0015-3sum |
| 0016-3sum-closest |
| 0026-remove-duplicates-from-sorted-array |
| 0075-sort-colors |
| 0167-two-sum-ii-input-array-is-sorted |
| 0977-squares-of-a-sorted-array |
| 0167-two-sum-ii-input-array-is-sorted |
| 0209-minimum-size-subarray-sum |
| 1004-max-consecutive-ones-iii |
| 0209-minimum-size-subarray-sum |
| 1004-max-consecutive-ones-iii |
This folder contains GeeksforGeeks practice problems prepared for the CODE-TIME repository.
Max Sum Subarray- Computes the maximum sum of a contiguous subarray of size
k.
- Computes the maximum sum of a contiguous subarray of size
Triplets with Smaller Sum- Counts triplets with a sum smaller than a target value.
Max Sum Subarray /Readme.mdMax Sum Subarray /sol.pyTriplets with Smaller Sum/Readme.mdTriplets with Smaller Sum/sol.py
Open the problem folder and run the Python solution.
Example:
python3 "Max Sum Subarray /sol.py"- Each subfolder contains a problem statement and a working Python solution.
- This folder is intended to be pushed into the
gfgdirectory of theCODE-TIMErepository.