Skip to content

Commit 7c4fde0

Browse files
committed
feat: add solutions to lc problem: No.1102
No.1102.Path With Maximum Minimum Value
1 parent 8cb01c7 commit 7c4fde0

File tree

8 files changed

+666
-239
lines changed

8 files changed

+666
-239
lines changed

solution/1000-1099/1096.Brace Expansion II/Solution.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ def dfs(exp):
66
s.add(exp)
77
return
88
i = exp.rfind('{', 0, j - 1)
9-
a, c = exp[:i], exp[j + 1:]
10-
for b in exp[i + 1: j].split(','):
9+
a, c = exp[:i], exp[j + 1 :]
10+
for b in exp[i + 1 : j].split(','):
1111
dfs(a + b + c)
1212

1313
s = set()

0 commit comments

Comments
 (0)