ADDALA MATHEW
ADDALA MATHEW
## Overview This pull request fixes critical issues in two GitHub Actions workflows that validate and manage pull requests in the free-programming-books repository. ## Changes ### 1. **comment-pr.yml** - Shell...
Add Telugu language documentation (README_te.md) This PR adds Telugu language translation of the main README file to make the project more accessible to Telugu-speaking developers and learners. Changes: - Added...
## Description This PR fixes a severe performance defect in the binary search implementations by removing inefficient validation checks that defeat the purpose of using binary search. ## Problem The...
Fixed bug in bubble_sort_recursive docstring where the doctest was calling bubble_sort_iterative([]) instead of bubble_sort_recursive([]). This was a copy-paste error that would cause the doctest to pass even if bubble_sort_recursive had...
Fix factorial() input validation to use isinstance(number, int) instead of value comparison Changes: - Replace 'number != int(number)' with 'not isinstance(number, int)' in factorial() - Fix doctests in factorial_recursive() to...