Skip to content

Commit 8acb1a8

Browse files
Merge branch 'master' of github.com:manu-prakash-choudhary/Python
2 parents 64e4062 + bee5800 commit 8acb1a8

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)