Skip to content

Commit ce8467e

Browse files
committed
I rectified the error in Sorting Algorithms/wave_sort.py
1 parent a928524 commit ce8467e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sorting Algorithims/wave_sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ def sortInWave(arr, n):
77
arr =input("Enter the arr")
88
sortInWave(arr, len(arr))
99
for i in range(0, len(arr)):
10-
print(arr[i]', ')
10+
print(arr[i],' ')

0 commit comments

Comments
 (0)