Skip to content

Commit ff0ae11

Browse files
Fixed an error that was causing linting to fail
1 parent 4a16584 commit ff0ae11

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Sorting Algorithims/Cycle Sort.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,5 @@ def cycleSort(array):
4747

4848
print("After sort : ")
4949
for i in range(0, n) :
50-
print(arr[i], end = \' \')
50+
print(arr[i], end=' ')
51+
print() # Print a newline

0 commit comments

Comments
 (0)