Curious About Technology

Welcome to Coding Explorations, your go-to blog for all things software engineering, DevOps, CI/CD, and technology! Whether you're an experienced developer, a curious beginner, or simply someone with a passion for the ever-evolving world of technology, this blog is your gateway to valuable insights, practical tips, and thought-provoking discussions.

Recent Posts

Merge Sort Using Concurrency
go, golang, programming, concurrency, algorithm Noah Parker go, golang, programming, concurrency, algorithm Noah Parker

Merge Sort Using Concurrency

Concurrency can significantly enhance the performance of many algorithms, and merge sort is no exception. By parallelizing specific tasks, we can often gain faster results by harnessing the power of multiple processing units. This blog post will dive into the idea of improving the merge sort algorithm using concurrency and then illustrate it with an example written in Go.

Read More