larissalages / code_problems

Code Problems from Coding Challenge Websites. The goal is to help them to improve their code skills and also studying for coding interviews.
MIT License
54 stars 181 forks source link

PRINT THE LCS (Dynamic programming) #209

Open jacker0031 opened 4 years ago

jacker0031 commented 4 years ago

In this problem when i used a[i][j]=1+a[i-1][j-1] use because when we consider i the element or j th element than that is taken in LCS but my solution on passed all solution in atcoder dp contest link is provided below https://atcoder.jp/contests/dp/tasks/dp_f

srajantiwari commented 4 years ago

@larissalages Added the solution to the issue with all guidelines in check. Please review PR #272 Thank You!