October 17, 2019

Functional Five in a Row using Scala

I am starting to learn and improve my functional programming skills. And I do not see the better way rather than practicing while coding small projects and reflecting on them. I implemented a small CLI version of “Five in a Row” game. Read more

July 20, 2018

Tuple in Java

Tuple is a pair of two or more elements. This kind of abstraction is rarely used in Java and there is real reason for it. Read more

June 27, 2018

Immutable (Cons) List in Java

One of the most elegant and frequently usable data structures in many functional programming languages is immutable linked list based on “cons” pairs. Read more