Tags /

#Algorithm

2 posts

Cover image for Solving the Sum of Squares Problem: Optimizing Performance
Programming 1361 words 7 min

Solving the Sum of Squares Problem: Optimizing Performance

Before delving into the main topic, I want to express my respect for the original post’s intent. My response aims to provide slight corrections that can benefit readers seeking accurate information. In the spirit of shared learning, I intend to contribute constructively rather than criticize. <br />Clarifications and alternative viewpoints can foster a deeper understanding of complex concepts. Let’s continue engaging in open discussions, embracing diverse insights as we collectively refine our knowledge.
Cover image for Merge Sort using Goroutines
Programming 702 words 4 min

Merge Sort using Goroutines

This is a simple example of how to use goroutines to parallelize a merge sort algorithm. We compare the performance of a simple merge sort algorithm with a parallel merge sort algorithm that uses goroutines.