Skip to content

Commit 75cdcb3

Browse files
committed
Leetcode submissions
1 parent 26c76f3 commit 75cdcb3

38 files changed

+710
-0
lines changed

a-number-after-a-double-reversal.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
class Solution:
2+
def isSameAfterReversals(self, num: int) -> bool:
3+
i = 0
4+
if num == 0:
5+
return True
6+
while num % 10 == 0:
7+
num = num // 10
8+
i += 1
9+
return i == 0
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import heapq
2+
3+
# Definition for a binary tree node.
4+
# class TreeNode:
5+
# def __init__(self, val=0, left=None, right=None):
6+
# self.val = val
7+
# self.left = left
8+
# self.right = right
9+
class Solution:
10+
def getAllElements(self, root1: TreeNode, root2: TreeNode) -> List[int]:
11+
heap = []
12+
paths = [root1, root2]
13+
i = 0
14+
while i < len(paths):
15+
curr = paths[i]
16+
if curr:
17+
heapq.heappush(heap, curr.val)
18+
if curr.left:
19+
paths.append(curr.left)
20+
if curr.right:
21+
paths.append(curr.right)
22+
i += 1
23+
return heapq.nsmallest(len(heap), heap)

basic-calculator-ii.py

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
class Solution:
2+
def eval(self, a, op, b):
3+
if op == '+':
4+
return a + b
5+
elif op == '-':
6+
return a - b
7+
elif op == '/':
8+
return int(a / b)
9+
elif op == '*':
10+
return a * b
11+
12+
def calculate(self, s: str) -> int:
13+
s += " "
14+
precedence = {
15+
'*': 1,
16+
'/': 1,
17+
'+': 0,
18+
'-': 0
19+
}
20+
numstack = []
21+
opstack = []
22+
chunk = ""
23+
for c in s:
24+
if c == " " or c in precedence:
25+
if len(chunk) > 0:
26+
numstack.append(int(chunk))
27+
chunk = ""
28+
if c in precedence:
29+
while len(opstack) > 0 and precedence[opstack[-1]] >= precedence[c]:
30+
currop = opstack.pop()
31+
b = numstack.pop()
32+
a = numstack.pop()
33+
res = self.eval(a, currop, b)
34+
numstack.append(res)
35+
opstack.append(c)
36+
else:
37+
chunk += c
38+
while len(opstack) > 0:
39+
currop = opstack.pop()
40+
b = numstack.pop()
41+
a = numstack.pop()
42+
res = self.eval(a, currop, b)
43+
numstack.append(res)
44+
return numstack[0]

basic-calculator.py

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
class Solution:
2+
def eval(self, a, op, b):
3+
if op == '+':
4+
return a + b
5+
elif op == '-':
6+
return a - b
7+
elif op == '/':
8+
return int(a / b)
9+
elif op == '*':
10+
return a * b
11+
12+
def calculate(self, s: str) -> int:
13+
s += " "
14+
precedence = {
15+
'*': 1,
16+
'/': 1,
17+
'+': 0,
18+
'-': 0
19+
}
20+
brackets = {
21+
'(': 1,
22+
')': -1
23+
}
24+
numstack = []
25+
opstack = []
26+
chunk = ""
27+
latestOpenBracket = True
28+
for c in s:
29+
if c == " " or c in precedence or c in brackets:
30+
if len(chunk) > 0:
31+
numstack.append(int(chunk))
32+
chunk = ""
33+
if c in brackets:
34+
if brackets[c] == 1:
35+
opstack.append('(')
36+
latestOpenBracket = True
37+
elif brackets[c] == -1:
38+
latestOpenBracket = False
39+
while opstack[-1] != '(':
40+
currop = opstack.pop()
41+
b = numstack.pop()
42+
a = numstack.pop()
43+
res = self.eval(a, currop, b)
44+
numstack.append(res)
45+
opstack.pop()
46+
elif c in precedence:
47+
if latestOpenBracket:
48+
numstack.append(0)
49+
while len(opstack) > 0 and precedence.get(opstack[-1], -1) >= precedence[c]:
50+
currop = opstack.pop()
51+
b = numstack.pop()
52+
a = numstack.pop()
53+
res = self.eval(a, currop, b)
54+
numstack.append(res)
55+
opstack.append(c)
56+
latestOpenBracket = False
57+
else:
58+
chunk += c
59+
latestOpenBracket = False
60+
while len(opstack) > 0:
61+
currop = opstack.pop()
62+
b = numstack.pop()
63+
a = numstack.pop()
64+
res = self.eval(a, currop, b)
65+
numstack.append(res)
66+
return numstack[0]

capitalize-the-title.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
class Solution:
2+
def capitalizeTitle(self, title: str) -> str:
3+
words = title.split()
4+
words = [word.lower() for word in words]
5+
words = [(word[0].upper() + word[1:]) if len(word) > 2 else word for word in words]
6+
return " ".join(words)

car-pooling.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import bisect
2+
3+
class Solution:
4+
def carPooling(self, trips: List[List[int]], capacity: int) -> bool:
5+
n = len(trips)
6+
points = []
7+
for i in range(n):
8+
num, source, dest = trips[i]
9+
bisect.insort(points, (source, num))
10+
bisect.insort(points, (dest, -num))
11+
k = len(points)
12+
curr = 0
13+
for i in range(k):
14+
curr += points[i][1]
15+
if curr > capacity:
16+
return False
17+
return True

check-if-it-is-a-good-array.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class Solution:
2+
def gcd(self, a, b):
3+
while b:
4+
a, b = b, a % b
5+
return a
6+
7+
def isGoodArray(self, nums: List[int]) -> bool:
8+
n = len(nums)
9+
curr = nums[0]
10+
for i in range(1, n):
11+
curr = self.gcd(curr, nums[i])
12+
return curr == 1

combine-two-tables.sql

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SELECT firstName, lastName, city, state from Person LEFT JOIN Address ON Person.personId = Address.personId;

count-square-sum-triples.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
class Solution:
2+
def countTriples(self, n: int) -> int:
3+
exists = set()
4+
for c in range(1, n + 1):
5+
exists.add(c * c)
6+
ctr = 0
7+
for a in range(1, n + 1):
8+
for b in range(1, n + 1):
9+
if (a * a + b * b) in exists:
10+
ctr += 1
11+
return ctr

detect-capital.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class Solution:
2+
def detectCapitalUse(self, word: str) -> bool:
3+
n = len(word)
4+
caps = 0
5+
for i in range(n):
6+
if word[i].isupper():
7+
caps += 1
8+
if caps == 0 or caps == n:
9+
return True
10+
if caps == 1 and word[0].isupper():
11+
return True
12+
return False

evaluate-division.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
class Solution:
2+
def calcEquation(self, equations: List[List[str]], values: List[float], queries: List[List[str]]) -> List[float]:
3+
graph = {}
4+
n = len(equations)
5+
for i in range(n):
6+
a, b = equations[i]
7+
graph[a] = graph.get(a, []) + [(b, values[i])]
8+
graph[b] = graph.get(b, []) + [(a, 1 / values[i])]
9+
op = []
10+
for c, d in queries:
11+
found = False
12+
paths = [(c, 1, {c})]
13+
while len(paths) > 0:
14+
curr, prod, visited = paths.pop()
15+
if curr not in graph:
16+
break
17+
if curr == d:
18+
op.append(prod)
19+
found = True
20+
break
21+
for j, div in graph.get(curr, []):
22+
if j not in visited:
23+
paths.append((j, prod * div, visited.union({j})))
24+
if not found:
25+
op.append(-1.0)
26+
return op

find-pivot-index.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class Solution:
2+
def pivotIndex(self, nums: List[int]) -> int:
3+
n = len(nums)
4+
if n == 1:
5+
return 0
6+
total = sum(nums)
7+
curr = 0
8+
if curr * 2 == total - nums[0]:
9+
return 0
10+
for i in range(n - 1):
11+
curr += nums[i]
12+
if curr * 2 == total - nums[i + 1]:
13+
return i + 1
14+
return -1

find-the-middle-index-in-array.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class Solution:
2+
def findMiddleIndex(self, nums: List[int]) -> int:
3+
n = len(nums)
4+
if n == 1:
5+
return 0
6+
total = sum(nums)
7+
curr = 0
8+
if curr * 2 == total - nums[0]:
9+
return 0
10+
for i in range(n - 1):
11+
curr += nums[i]
12+
if curr * 2 == total - nums[i + 1]:
13+
return i + 1
14+
return -1

find-the-town-judge.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
class Solution:
2+
def findJudge(self, n: int, trust: List[List[int]]) -> int:
3+
trustedGraph = {}
4+
trustingGraph = {}
5+
for a, b in trust:
6+
trustedGraph[b] = trustedGraph.get(b, 0) + 1
7+
trustingGraph[a] = trustingGraph.get(a, 0) + 1
8+
for i in range(1, n + 1):
9+
if trustedGraph.get(i, 0) == n - 1 and trustingGraph.get(i, 0) == 0:
10+
return i
11+
return -1

fizz-buzz.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
class Solution:
2+
def fizzBuzz(self, n: int) -> List[str]:
3+
return [[str(i), "Fizz", "Buzz", "FizzBuzz"][2 * int(i % 5 == 0) + int(i % 3 == 0)] for i in range(1, n + 1)]

generate-random-point-in-a-circle.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import random
2+
import math
3+
4+
class Solution:
5+
6+
def __init__(self, radius: float, x_center: float, y_center: float):
7+
self.r = radius
8+
self.cx = x_center
9+
self.cy = y_center
10+
11+
def randPoint(self) -> List[float]:
12+
randRadius = self.r * math.sqrt(random.random())
13+
randAngle = 2 * math.pi * random.random()
14+
x = self.cx + randRadius * math.cos(randAngle)
15+
y = self.cy + randRadius * math.sin(randAngle)
16+
return [x, y]
17+
18+
# Your Solution object will be instantiated and called as such:
19+
# obj = Solution(radius, x_center, y_center)
20+
# param_1 = obj.randPoint()

implement-stack-using-queues.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
class MyStack:
2+
3+
def __init__(self):
4+
self.stack = []
5+
6+
def push(self, x: int) -> None:
7+
self.stack.append(x)
8+
9+
def pop(self) -> int:
10+
if not self.empty():
11+
return self.stack.pop()
12+
13+
def top(self) -> int:
14+
if not self.empty():
15+
return self.stack[-1]
16+
17+
def empty(self) -> bool:
18+
return len(self.stack) == 0
19+
20+
21+
# Your MyStack object will be instantiated and called as such:
22+
# obj = MyStack()
23+
# obj.push(x)
24+
# param_2 = obj.pop()
25+
# param_3 = obj.top()
26+
# param_4 = obj.empty()

length-of-last-word.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class Solution:
2+
def lengthOfLastWord(self, s: str) -> int:
3+
s += " "
4+
latest = None
5+
chunk = ""
6+
for c in s:
7+
if c == " ":
8+
if len(chunk) > 0:
9+
latest = chunk
10+
chunk = ""
11+
else:
12+
chunk += c
13+
return len(latest)

linked-list-random-node.py

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Definition for singly-linked list.
2+
# class ListNode:
3+
# def __init__(self, val=0, next=None):
4+
# self.val = val
5+
# self.next = next
6+
7+
import random
8+
9+
class Solution:
10+
11+
def __init__(self, head: Optional[ListNode]):
12+
self.head = head
13+
14+
def getRandom(self) -> int:
15+
res = self.head.val
16+
n = 2
17+
curr = self.head.next
18+
while curr:
19+
isSwap = random.randrange(0, n)
20+
if isSwap == 0:
21+
res = curr.val
22+
curr = curr.next
23+
n += 1
24+
return res
25+
26+
27+
# Your Solution object will be instantiated and called as such:
28+
# obj = Solution(head)
29+
# param_1 = obj.getRandom()

0 commit comments

Comments
 (0)