Fixed reverse words algorithm (#2469)

* updated reversed words

* fixup! Format Python code with psf/black push

Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
Du Yuanchao
2020-09-24 19:12:52 +08:00
committed by GitHub
parent 4a3b8d682e
commit 902fe1c907
3 changed files with 9 additions and 10 deletions

View File

@ -1,5 +1,6 @@
# https://www.tutorialspoint.com/python3/bitwise_operators_example.htm
def binary_and(a: int, b: int):
"""
Take in 2 integers, convert them to binary,

View File

@ -1,5 +1,6 @@
# https://www.tutorialspoint.com/python3/bitwise_operators_example.htm
def binary_xor(a: int, b: int):
"""
Take in 2 integers, convert them to binary,