MMMichael Mitrakosininitjs.hashnode.dev·Apr 20, 2024 · 2 min readTechnology and Helping Kids with AutismTechnology has emerged as a powerful tool in supporting educational and developmental interventions for children with autism spectrum disorders (ASD). By integrating tech solutions into educational settings, schools are now better equipped to cater t...00
MMMichael Mitrakosininitjs.hashnode.dev·Nov 1, 2020 · 3 min readImplement Bucket Sort in JavaScriptThis article is part of a series covering sort algorithms in JavaScript. You can find the rest of the series here. Today I’ll be covering everything you need to know about bucket sort. Bucket sort is a distribution sort. It works by arranging element...00
MMMichael Mitrakosininitjs.hashnode.dev·Nov 1, 2020 · 3 min readImplement Merge Sort in JavaScriptThis article is part of a series covering sort algorithms in JavaScript. You can find the rest of the series here. Today I’ll be covering the ins and outs of merge sort. This is probably the first useful sorting algorithm I’m covering. Merge sort is ...00
MMMichael Mitrakosininitjs.hashnode.dev·Nov 1, 2020 · 3 min readImplement Insertion Sort in JavaScriptThis article is part of a series covering sort algorithms in JavaScript. Today I’ll be covering the ins and outs of insertion sort. Insertion sort is more complex but a little more useful than bubble sort. The worst case scenario for it is similar to...00
MMMichael Mitrakosininitjs.hashnode.dev·Nov 1, 2020 · 3 min readImplement Bubble Sort in JavaScriptThis article is part of a series covering sort algorithms in JavaScript. If you’re new to sorting algorithms, or algorithms in general, read this first to get a solid foundation for moving forward. While we do want to learn the most efficient algorit...00