I stumbled on an older dev.to post by the great Greg Bullmash that I really liked because it triggered my code-golfing nerve, and I figured I could come up with a bubble sort one-liner!
Turns out I was wrong, I need at least 4 3 lines to make tiniest working bubble sort algo on the net* but it was still a fun exercise so I'm sharing it.
const bubblie = (arr, swaps = false) => {
arr.forEach((e,i) => { e > arr[i+1] ? ([arr[i], arr[i+1]] = [arr[i+1], arr[i]], swaps = true) : false });
return !swaps ? arr : bubblie(arr, false);
}
*citation needed
Top comments (4)
Here is a non-recursive 4-liner in Python, with visualization.
...but I'm in a good mood, so I've updated my code to only need 3 lines now ;-)
You guys need to figure out whats counts into LoC because i cant see any pattern there ;)
You may very well be right :-)
imho, the function signature doesn't count as a LOC... however, in my code I set a default value in a function parameter but then use it as an argument, so I believe have to count it as a line.
The alternative would be:
edit: now that I think about it one more time, I could use the fact that 'undefined' evaluates to false and then it would be just 2 lines of code :-)