Skip to content

Commit 164981e

Browse files
committed
Min Max Stack
1 parent 4f68d3a commit 164981e

File tree

4 files changed

+90
-0
lines changed

4 files changed

+90
-0
lines changed

.idea/dictionaries/josancamon19.xml

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

3.7. powerset.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def powerset(array):
2+
pass

3.8. min-max-stack.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
class MinMaxStack:
2+
def __init__(self):
3+
self.values = []
4+
self.min_max = [[float('inf'), float('-inf')]]
5+
6+
def pop(self):
7+
self.min_max.pop()
8+
return self.values.pop()
9+
10+
def push(self, number):
11+
prev_min, prev_max = self.min_max[-1]
12+
new_min, new_max = min(prev_min, number), max(prev_max, number)
13+
self.min_max.append([new_min, new_max])
14+
self.values.append(number)
15+
16+
def peek(self): return self.values[-1] if len(self.values) > 0 else None
17+
18+
def getMin(self): return self.min_max[-1][0]
19+
20+
def getMax(self): return self.min_max[-1][1]

longest-palindromic-substring.py

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# def longestPalindromicSubstring(string):
2+
# # Write your code here.
3+
# max_palindrome = ''
4+
# for i in range(len(string)):
5+
# for j in range(len(string)):
6+
# w = string[i: len(string) - j]
7+
# if is_palindrome(w):
8+
# if len(w) > len(max_palindrome):
9+
# max_palindrome = w
10+
#
11+
# return max_palindrome
12+
#
13+
#
14+
# def is_palindrome(string):
15+
# for i in range(len(string) // 2):
16+
# if string[i] != string[-i - 1]:
17+
# return False
18+
# return True
19+
20+
21+
def longestPalindromicSubstring(string):
22+
# Write your code here.
23+
if len(string) <= 1:
24+
return string
25+
max_palindrome = ''
26+
for i in range(len(string)):
27+
for j in range(len(string)):
28+
w = string[i: len(string) - j]
29+
if is_palindrome2(w):
30+
if len(w) > len(max_palindrome):
31+
max_palindrome = w
32+
33+
return max_palindrome
34+
35+
36+
# def is_palindrome(string):
37+
# for i in range(len(string) // 2):
38+
# if string[i] != string[-i - 1]:
39+
# return False
40+
# return True
41+
42+
43+
# def is_palindrome2(string):
44+
# if len(string) <= 1:
45+
# return True
46+
#
47+
# stack = []
48+
# for char in string:
49+
# if len(stack) == 0:
50+
# stack.append(char)
51+
# else:
52+
# if len(stack) > 1 and stack[-2] == char:
53+
# stack.pop()
54+
# stack.pop()
55+
# elif stack[-1] == char:
56+
# stack.pop()
57+
# else:
58+
# stack.append(char)
59+
# return len(stack) == 0
60+
#
61+
62+
def is_palindrome(string, left_idx, right_idx):
63+
pass
64+
65+
66+
if __name__ == '__main__':
67+
pass

0 commit comments

Comments
 (0)