There are more than a few search algorithms. Today we’ll examine one of them, the Binary Search Algorithm, and we’ll implement this algorithm using an array extension in swift. We’ll also compare the performance of this algorithm to your standard brute force search, and see how it compares. Binary Search Algorithm… Read more »
With iPhone 6s came the 3D touch, and with it we got a few more options to interact with the users. In this short blog post we’ll examine one of those options called ‘Application Shortcuts’, or sometimes called ‘Home Screen Quick Actions’, we’ll call them application shortcuts, because it’s shorter…. Read more »
Sorting algorithms are an important feature of modern computing, and in this article we’ll examine some of the most common sorting algorithms in use today. Implementations of these algorithms will be done in swift, but they are language agnostic, and you should have on problems implementing them in a language… Read more »