Merge branch 'main' of git.bumpsoo.dev:bumpsoo/leetpycode

This commit is contained in:
bumpsoo 2024-10-29 00:23:58 +09:00
commit b06692b5f2
2 changed files with 65 additions and 0 deletions

View file

@ -0,0 +1,35 @@
from typing import Optional
# https://leetcode.com/problems/flip-equivalent-binary-trees
class TreeNode:
def __init__(self, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
class Solution:
def flipEquiv(self, root1: Optional[TreeNode], root2: Optional[TreeNode]) -> bool:
if root1 == None and root2 == None:
return True
if root1 == None or root2 == None:
return False
if root1.val != root2.val:
return False
flip = False
if (
(root1.left == None and root2.right == None) or \
(root1.left != None and root2.right != None and \
root1.left.val == root2.right.val)
) and \
(
(root1.right == None and root2.left == None) or \
(root1.right != None and root2.left != None and \
root1.right.val == root2.left.val)
):
flip = True
if flip:
tmp = root2.left
root2.left = root2.right
root2.right = tmp
return self.flipEquiv(root1.left, root2.left) and \
self.flipEquiv(root1.right, root2.right)

View file

@ -0,0 +1,30 @@
# https://leetcode.com/problems/remove-sub-folders-from-the-filesystem
from typing import List
import copy
class Solution:
def removeSubfolders(self, folder: List[str]) -> List[str]:
trie = {}
def push(trie, words, index):
if index >= len(words):
trie['end'] = True
return
if words[index] not in trie:
trie[words[index]] = {}
return push(trie[words[index]], words, index + 1)
def pop(trie, curr, ret):
if trie == None:
return
if 'end' in trie:
ret.append('/' + '/'.join(curr))
return
for k, v in trie.items():
cur = copy.deepcopy(curr)
cur.append(k)
pop(v, cur, ret)
for each in folder:
words = each.split('/')
push(trie, words[1:], 0)
ret = []
pop(trie, [], ret)
return ret