-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathbaseballscore.py
More file actions
32 lines (24 loc) · 1.45 KB
/
Copy pathbaseballscore.py
File metadata and controls
32 lines (24 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
'''
You are keeping score for a baseball game with strange rules. The game consists of several rounds, where the scores of past rounds may affect future rounds' scores.
At the beginning of the game, you start with an empty record. You are given a list of strings ops, where ops[i] is the ith operation you must apply to the record and is one of the following:
An integer x - Record a new score of x.
"+" - Record a new score that is the sum of the previous two scores. It is guaranteed there will always be two previous scores.
"D" - Record a new score that is double the previous score. It is guaranteed there will always be a previous score.
"C" - Invalidate the previous score, removing it from the record. It is guaranteed there will always be a previous score.
Return the sum of all the scores on the record. The test cases are generated so that the answer fits in a 32-bit integer.
'''
class Solution:
def calPoints(self, ops: List[str]) -> int:
# This is O(N) since we are iterating through
# Since we are using lifo, stack is great but we can implement it with list as in this example
stack = []
for op in ops:
if op == "+":
stack.append(stack[-1] + stack[-2])
elif op == "C":
stack.pop()
elif op == "D":
stack.append(2 * stack[-1])
else:
stack.append(int(op))
return sum(stack)