Closed jonasbn closed 5 years ago
The current example implementation of bubble sort is broken
Example run:
$ perl Perl/BubbleSort/bubble_sort.pl 1 3 2 3 5 6 7 9 4 10
This PR corrects the implementation, with a version resembling popular pseudo code references more closely.
$ perl Perl/BubbleSort/bubble_sort.pl 1 2 3 3 4 5 6 7 9 10
The current example implementation of bubble sort is broken
Example run:
This PR corrects the implementation, with a version resembling popular pseudo code references more closely.
Example run: