-
Notifications
You must be signed in to change notification settings - Fork 829
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python Algorithms #30
Comments
Hi @bmoussa, Feel free to send in your contributions to this repo. Do you have something in mind that you want to implement? If you don't have a specific algorithm in mind, you can improve this repo by adding testcases for existing algorithms. Let me know if you need help with this. |
Thank you |
Hi!! I have some algorithms in mind. can i contribute to this repo? |
Sure! Let me know what algorithms do you have in mind and we can move forward from there. |
I can write Knuth–Morris–Pratt algorithm(KMP), Merge sort,Tower of Hanoi and Fenwick tree algorithms. what u say? |
KMP sounds great. I wanted to add more string algorithms to this repo and KMP sounds like a good way to go. After KMP you can pick up Rabin-Karp and then Boyer-Moore! Also do remember to add tests as it makes the code more robust. Looking forward to your PR! |
Which of these can I add? Segment tree, strongly connected components (Kosaraju), binary indexed tree and longest common subsequence. |
@vedangmehta Kosaraju's already there, so is LCS. You can start with Segment Tree. |
I can't find LCS in DP section. I can see LIS though. |
Oh yeah! You're right. Sorry I confused the two. You can go ahead and add that too. |
Ok! I'll add both seg tree and LCS. |
@prakhar1989 , Can i add |
@munendrasn: Can you talk a bit more about the algorithm? Probably a wiki link if possible? |
@munendrasn The algorithm is generally known as Levenstein Distance, I believe. |
Cool. Sounds good. Do remember to add tests in the PR as well. |
Sure. @prakhar1989 , Also should I close this PR #38 ?? |
Can i add modular exponentiation ? |
@prakhar1989 I've sent a PR for modular multiplicative inverse algorithm. |
Hi I want to contribute to this project by adding some python algorithme.This is my first contribution so let me know if I did something wrong!
The text was updated successfully, but these errors were encountered: