feat(work): add new LeetCode solution files for 1426, 1832, 344, and 15

This commit is contained in:
Prad Nukala
2026-08-31 16:50:30 -04:00
parent 002c2c9c97
commit 64173857e7
4 changed files with 221 additions and 0 deletions
@@ -0,0 +1,45 @@
"""
1426. Counting Elements
Difficulty: Easy
https://leetcode.com/problems/counting-elements/
──────────────────────────────────────────────────
Given an integer array arr, count how many elements x there are, such
that x + 1 is also in arr. If there are duplicates in arr, count them
separately.
Example 1:
Input: arr = [1,2,3]
Output: 2
Explanation: 1 and 2 are counted cause 2 and 3 are in arr.
Example 2:
Input: arr = [1,1,3,3,5,5,7,7]
Output: 0
Explanation: No numbers are counted, cause there is no 2, 4, 6, or 8
in arr.
Constraints:
• 1 <= arr.length <= 1000
• 0 <= arr[i] <= 1000
"""
class Solution:
def countElements(self, arr: List[int]) -> int:
arr_set = set(arr)
count = 0
for n in arr:
sum = n + 1
if sum in arr_set:
count += 1
return count
@@ -0,0 +1,40 @@
"""
1832. Check if the Sentence Is Pangram
Difficulty: Easy
https://leetcode.com/problems/check-if-the-sentence-is-pangram/
──────────────────────────────────────────────────
A pangram is a sentence where every letter of the English alphabet
appears at least once.
Given a string sentence containing only lowercase English letters,
return true if sentence is a pangram, or false otherwise.
Example 1:
Input: sentence = "thequickbrownfoxjumpsoverthelazydog"
Output: true
Explanation: sentence contains at least one of every letter of the
English alphabet.
Example 2:
Input: sentence = "leetcode"
Output: false
Constraints:
• 1 <= sentence.length <= 1000
• sentence consists of lowercase English letters.
"""
class Solution:
def checkIfPangram(self, sentence: str) -> bool:
return len(set(sentence.lower())) == 26
@@ -0,0 +1,47 @@
"""
344. Reverse String
Difficulty: Easy
https://leetcode.com/problems/reverse-string/
──────────────────────────────────────────────────
Write a function that reverses a string. The input string is given as
an array of characters s.
You must do this by modifying the input array in-place with O(1)
extra memory.
Example 1:
Input: s = ["h","e","l","l","o"]
Output: ["o","l","l","e","h"]
Example 2:
Input: s = ["H","a","n","n","a","h"]
Output: ["h","a","n","n","a","H"]
Constraints:
• 1 <= s.length <= 10^5
• s[i] is a printable ascii character.
"""
class Solution:
def reverseString(self, s: List[str]) -> None:
l = 0
r = len(s) - 1
while l < r:
s[l], s[r] = s[r], s[l]
l += 1
r -= 1
"""
Do not return anything, modify s in-place instead.
"""