feat: Add DSA solutions for beginner, intermediate, and advanced issues - #85
Open
Santosh-Ku-Sahoo wants to merge 1 commit into
Open
feat: Add DSA solutions for beginner, intermediate, and advanced issues#85Santosh-Ku-Sahoo wants to merge 1 commit into
Santosh-Ku-Sahoo wants to merge 1 commit into
Conversation
Implemented solutions for the following issues from ISSUES_LIST.md: Beginner: - tripti-gupta700#2 Reverse String (3 approaches: slicing, two-pointer, recursive) - tripti-gupta700#3 Palindrome Check (3 approaches with case/punctuation handling) - tripti-gupta700#4 Fibonacci (iterative + memoized recursive) - tripti-gupta700#5 Linear Search (first-occurrence + all-occurrences) - tripti-gupta700#6 Bubble Sort (optimized with early termination) - tripti-gupta700#7 Count Vowels - tripti-gupta700#8 Find Max/Min in Array (single pass) Intermediate: - tripti-gupta700#13 Binary Search (iterative + recursive) - tripti-gupta700#14 Merge Sort (divide and conquer) - tripti-gupta700#15 Linked List (full implementation with 7+ operations) - tripti-gupta700#16 Valid Parentheses (stack-based) - tripti-gupta700#17 BFS/DFS on Graph (adjacency list) - tripti-gupta700#18 Longest Common Subsequence (DP) Advanced: - tripti-gupta700#25 Dijkstra's Algorithm (priority queue) - tripti-gupta700#26 LRU Cache (OrderedDict) All files follow the two_sum.py style with header comments, docstrings, and comprehensive test cases.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implemented solutions for the following issues from ISSUES_LIST.md:
Beginner:
Intermediate:
Advanced:
All files follow the two_sum.py style with header comments, docstrings, and comprehensive test cases.
🔗 Related Issue
Closes #
📝 What did you do?
🗂️ Type of Change
✅ Self-Review Checklist
📸 Screenshots / Output (if applicable)
💬 Anything else?