Skip to content

Commit 50485f7

Browse files
Manan-Rathipoyea
andauthoredOct 20, 2021
Fix typos in Sorts and Bit_manipulation (TheAlgorithms#4949)
* Fix several typos * Update bit_manipulation/README.md Co-authored-by: John Law <[email protected]> * Update double_sort.py Co-authored-by: John Law <[email protected]>
1 parent 83cf578 commit 50485f7

File tree

6 files changed

+18
-19
lines changed

6 files changed

+18
-19
lines changed
 

‎bit_manipulation/README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
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
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+
* https://wiki.python.org/moin/BitManipulation
5+
* https://wiki.python.org/moin/BitwiseOperators
6+
* https://www.tutorialspoint.com/python3/bitwise_operators_example.htm

‎bit_manipulation/binary_and_operator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def binary_and(a: int, b: int) -> str:
2222
>>> binary_and(0, -1)
2323
Traceback (most recent call last):
2424
...
25-
ValueError: the value of both input must be positive
25+
ValueError: the value of both inputs must be positive
2626
>>> binary_and(0, 1.1)
2727
Traceback (most recent call last):
2828
...
@@ -33,7 +33,7 @@ def binary_and(a: int, b: int) -> str:
3333
TypeError: '<' not supported between instances of 'str' and 'int'
3434
"""
3535
if a < 0 or b < 0:
36-
raise ValueError("the value of both input must be positive")
36+
raise ValueError("the value of both inputs must be positive")
3737

3838
a_binary = str(bin(a))[2:] # remove the leading "0b"
3939
b_binary = str(bin(b))[2:] # remove the leading "0b"

‎bit_manipulation/binary_or_operator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def binary_or(a: int, b: int) -> str:
2121
>>> binary_or(0, -1)
2222
Traceback (most recent call last):
2323
...
24-
ValueError: the value of both input must be positive
24+
ValueError: the value of both inputs must be positive
2525
>>> binary_or(0, 1.1)
2626
Traceback (most recent call last):
2727
...
@@ -32,7 +32,7 @@ def binary_or(a: int, b: int) -> str:
3232
TypeError: '<' not supported between instances of 'str' and 'int'
3333
"""
3434
if a < 0 or b < 0:
35-
raise ValueError("the value of both input must be positive")
35+
raise ValueError("the value of both inputs must be positive")
3636
a_binary = str(bin(a))[2:] # remove the leading "0b"
3737
b_binary = str(bin(b))[2:]
3838
max_len = max(len(a_binary), len(b_binary))

‎bit_manipulation/binary_xor_operator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def binary_xor(a: int, b: int) -> str:
2222
>>> binary_xor(0, -1)
2323
Traceback (most recent call last):
2424
...
25-
ValueError: the value of both input must be positive
25+
ValueError: the value of both inputs must be positive
2626
>>> binary_xor(0, 1.1)
2727
Traceback (most recent call last):
2828
...
@@ -33,7 +33,7 @@ def binary_xor(a: int, b: int) -> str:
3333
TypeError: '<' not supported between instances of 'str' and 'int'
3434
"""
3535
if a < 0 or b < 0:
36-
raise ValueError("the value of both input must be positive")
36+
raise ValueError("the value of both inputs must be positive")
3737

3838
a_binary = str(bin(a))[2:] # remove the leading "0b"
3939
b_binary = str(bin(b))[2:] # remove the leading "0b"

‎sorts/bead_sort.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ def bead_sort(sequence: list) -> list:
2121
>>> bead_sort([1, .9, 0.0, 0, -1, -.9])
2222
Traceback (most recent call last):
2323
...
24-
TypeError: Sequence must be list of nonnegative integers
24+
TypeError: Sequence must be list of non-negative integers
2525
2626
>>> bead_sort("Hello world")
2727
Traceback (most recent call last):
2828
...
29-
TypeError: Sequence must be list of nonnegative integers
29+
TypeError: Sequence must be list of non-negative integers
3030
"""
3131
if any(not isinstance(x, int) or x < 0 for x in sequence):
32-
raise TypeError("Sequence must be list of nonnegative integers")
32+
raise TypeError("Sequence must be list of non-negative integers")
3333
for _ in range(len(sequence)):
3434
for i, (rod_upper, rod_lower) in enumerate(zip(sequence, sequence[1:])):
3535
if rod_upper > rod_lower:

‎sorts/double_sort.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
def double_sort(lst):
2-
"""this sorting algorithm sorts an array using the principle of bubble sort,
3-
but does it both from left to right and right to left,
4-
hence i decided to call it "double sort"
2+
"""This sorting algorithm sorts an array using the principle of bubble sort,
3+
but does it both from left to right and right to left.
4+
Hence, it's called "Double sort"
55
:param collection: mutable ordered sequence of elements
66
:return: the same collection in ascending order
77
Examples:

0 commit comments

Comments
 (0)
Please sign in to comment.