News

The first task I decided to accomplish was a quick 5 hour Java concurrency class provided through my work’s training portal. The work was pretty basic but an hour in we got an assignment: create a ...
/*You are given an integer array A of length N. You have to find the sum of all subarray sums of A. More formally, a subarray is defined as a contiguous part of an array which we can obtain by ...
The traditional, slow brute-force approach that uses loops and arrays. A high-performance approach that uses advanced Vector and single instruction multiple data (SIMD) semantics. In this article ...