Subsets – 78. LeetCode

The Subsets problem is classic combinatorics tasks in which you’re given a list of unique integers, and your goal is to return all possible subsets of the list (including the empty subset of the list itself). It’s a fundamental problem that helps build a deeper understanding of recursion, backtracking, and…

read more

SCSS And BEM Explained Simply

Being able to correctly organize and abstract code into smaller pieces is essential for all code, but especially CSS. When it comes to large, complex frontends SASS is one of the best ways to correctly structure CSS. Nothing pairs better with SASS then BEM methodology. Which stands for: A block…

read more