Skip to content

Commit bee5800

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 922a794 commit bee5800

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

other/shuffled_array.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ def shuffle(self) -> list:
6363
temp[a], temp[i] = temp[i], temp[a]
6464
return temp
6565

66-
if __name__ == '__main__':
66+
67+
if __name__ == "__main__":
6768
solclass = Solution([18, 2, 3, 4, 5, 7, 8, 10, 21])
6869
shuffled_arr = solclass.shuffle()
6970
print(shuffled_arr)

0 commit comments

Comments
 (0)