aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <Mohammad.Anwar@yahoo.com>2020-06-11 17:11:27 +0100
committerGitHub <noreply@github.com>2020-06-11 17:11:27 +0100
commit4cb5dab951b195c73af94b60a5fb1063158fdde0 (patch)
tree62aaefe7f7780e572e9675c65c0551723dcb1856
parent5992a6a617749212388658d2574500ff8861e195 (diff)
parentda076644bf4c8750a1b168ba19045d9398c6c4f2 (diff)
downloadperlweeklychallenge-club-4cb5dab951b195c73af94b60a5fb1063158fdde0.tar.gz
perlweeklychallenge-club-4cb5dab951b195c73af94b60a5fb1063158fdde0.tar.bz2
perlweeklychallenge-club-4cb5dab951b195c73af94b60a5fb1063158fdde0.zip
Merge pull request #1815 from sangeetkar/ch64
Python CH64
-rwxr-xr-xchallenge-064/sangeet-kar/python/ch-1.py55
-rwxr-xr-xchallenge-064/sangeet-kar/python/ch-2.py21
2 files changed, 76 insertions, 0 deletions
diff --git a/challenge-064/sangeet-kar/python/ch-1.py b/challenge-064/sangeet-kar/python/ch-1.py
new file mode 100755
index 0000000000..3cf20349be
--- /dev/null
+++ b/challenge-064/sangeet-kar/python/ch-1.py
@@ -0,0 +1,55 @@
+#!/usr/bin/env python
+
+from collections import namedtuple
+import heapq
+
+Node = namedtuple('Node', 'pos, path, cost, visited')
+
+def manhattan_dist(pos, goal):
+ return goal[0] - pos[0] + goal[1] - pos[1]
+
+def next_states(pos, matrix):
+ xmax, ymax = len(matrix), len(matrix[0])
+ x, y = pos
+ return [(x1, y1)
+ for x1, y1 in [(x-1, y), (x+1, y), (x, y+1), (x, y-1)]
+ if (0 <= x1 < xmax) and (0 <= y1 < ymax)]
+
+def move(curr_node, pos, matrix):
+ cost = matrix[pos[0]][pos[1]]
+ return Node(pos, curr_node.path + [cost], curr_node.cost + cost, curr_node.visited.union([pos]))
+
+
+def solve(matrix):
+ init = (0, 0)
+ goal = (len(matrix)-1, len(matrix[0])-1)
+
+ curr_cost = matrix[init[0]][init[1]]
+ states = [(manhattan_dist(init, goal), Node(init, [curr_cost], curr_cost, set([init])))]
+ heapq.heapify(states)
+
+ while states:
+ _, best_node = heapq.heappop(states)
+ if best_node.pos == goal:
+ print_result(best_node)
+ break
+ for state in next_states(best_node.pos, matrix):
+ next_node = move(best_node, state, matrix)
+ if not state in best_node.visited:
+ heapq.heappush(states, (next_node.cost + manhattan_dist(next_node.pos, goal),
+ next_node))
+
+def print_result(node):
+ print(f"Best path: {node.cost} ({'->'.join(str(p) for p in node.path)})")
+
+
+solve([[1, 2, 3],
+ [4, 5, 6],
+ [7, 8, 9]])
+
+#More complicated case
+solve([[1, 2, 3],
+ [12, 2, 6],
+ [-3, 6, 20],
+ [2, 8, 9]])
+
diff --git a/challenge-064/sangeet-kar/python/ch-2.py b/challenge-064/sangeet-kar/python/ch-2.py
new file mode 100755
index 0000000000..a11a70ab8b
--- /dev/null
+++ b/challenge-064/sangeet-kar/python/ch-2.py
@@ -0,0 +1,21 @@
+#!/usr/bin/env python
+
+def word_break(string, words):
+ ans = []
+ recursive_helper(string, words, [], ans)
+ return ans
+
+def recursive_helper(string, words, accum, ans):
+ if not string:
+ ans.append(accum)
+ return
+ for word in words:
+ if string.startswith(word):
+ recursive_helper(string[len(word):], words, accum + [word], ans)
+
+
+print(word_break("perlweeklychallenge", ["weekly", "challenge", "perl"]))
+print(word_break("perlandraku", ["python", "ruby", "haskell"]))
+
+# multiple solutions
+print(word_break("perlandraku", ["perl", "perland", "raku", "and"]))