gopalgoel19 / Competitive-Programming-Solutions

Solutions of competitive programming problems on various websites likes spoj, codechef, codeforces, etc.
8 stars 37 forks source link

Created knpsk.py and chrl.py #57

Closed adi0311 closed 4 years ago

adi0311 commented 4 years ago
  1. [KNPSK] is a greedy version of Knapsack problem, a good problem from medium section. Link to my Solution .
  2. [CHRL] is another good problem from medium section. It is a version of Knapsack problem which fails for the iterative solution(bottoms up approach) and works only for recursive solution with dynamic programming(memoisation). Link to my Solution.