Skip to content

Commit e5f0cdb

Browse files
added shuffled_array.py
1 parent f872398 commit e5f0cdb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

other/shuffled_array.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111

1212
class Solution:
1313

14-
"""
15-
>>> Solution().__init__(array=[1,2,3])
16-
Traceback (most recent call last):
17-
....
18-
TypeError: __init__() missing 1 required positional argument: 'array'
19-
"""
14+
# """
15+
# >>> Solution().__init__(array=[1,2,3])
16+
# Traceback (most recent call last):
17+
# ....
18+
# TypeError: __init__() missing 1 required positional argument: 'array'
19+
# """
2020

2121
def __init__(self, array: list) -> None:
2222
self.arr = array

0 commit comments

Comments
 (0)