Update BubbleSort.js

Corrected spelling mistake
This commit is contained in:
Mohan Murali
2021-09-04 00:18:49 -07:00
committed by GitHub
parent a19541b289
commit 0ad2c6e8f3

View File

@ -1,5 +1,5 @@
/* Bubble Sort is an algorithm to sort an array. It
* compares adjacent element and swaps thier position
* compares adjacent element and swaps their position
* The big O on bubble sort in worst and best case is O(N^2).
* Not efficient.
*