# SOLID principles: Single responsibility
4 min read
SOLID is a set of principles that lead to cleaner, more maintenable and extensible code. The first principle is the Single Responsibility Principle or SRP.
SOLID is a set of principles that lead to cleaner, more maintenable and extensible code. The first principle is the Single Responsibility Principle or SRP.
In the past few years, functional programming’s popularity has increased and new languages (like elixir or scala) that embrace it have been created. But what exactly is functional programming?
As we all know, there is a vast number of data structures out there. One of the data structure categories is probabilistic data structures. Probabilistic data structures usually trade certainty in…