Skip to content

Commit 24b2aec

Browse files
cclaussgithub-actions
and
github-actions
authored
Create Python/bit_manipulation/README.md (#1897)
* Create Python/bit_manipulation/README.md To open up a new area of algorithms... @Shrutikabansal I hope that you will contribute some of your work here. * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent 4b78c69 commit 24b2aec

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

DIRECTORY.md

+1
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,7 @@
586586
* [Aho-Corasick](https://github.com/TheAlgorithms/Python/blob/master/strings/aho-corasick.py)
587587
* [Boyer Moore Search](https://github.com/TheAlgorithms/Python/blob/master/strings/boyer_moore_search.py)
588588
* [Check Pangram](https://github.com/TheAlgorithms/Python/blob/master/strings/check_pangram.py)
589+
* [Is Palindrome](https://github.com/TheAlgorithms/Python/blob/master/strings/is_palindrome.py)
589590
* [Knuth Morris Pratt](https://github.com/TheAlgorithms/Python/blob/master/strings/knuth_morris_pratt.py)
590591
* [Levenshtein Distance](https://github.com/TheAlgorithms/Python/blob/master/strings/levenshtein_distance.py)
591592
* [Lower](https://github.com/TheAlgorithms/Python/blob/master/strings/lower.py)

bit_manipulation/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
https://docs.python.org/3/reference/expressions.html#binary-bitwise-operations
2+
https://docs.python.org/3/reference/expressions.html#unary-arithmetic-and-bitwise-operations
3+
https://docs.python.org/3/library/stdtypes.html#bitwise-operations-on-integer-types
4+
5+
https://wiki.python.org/moin/BitManipulation
6+
https://wiki.python.org/moin/BitwiseOperators
7+
https://www.tutorialspoint.com/python3/bitwise_operators_example.htm

0 commit comments

Comments
 (0)