This problem is about finding the longest substring in a given string s where all characters in the substring are the same after making at most k changes to the string. Here’s the explanation in simple terms: Imagine the string s = “AABABBA” and k = 1. The result is…
Coin Change – 322. LeetCode
The “Coin Change” problem is a classic example of a dynamic programming problem in which we aim to find the minimum number of coins needed to make up a target amount using a given set of coin denominations. This problem is known for testing the ability to optimize for minimal…
Comment List Item Tailwind CSS
Comment Box Tailwind CSS
React TypeScript Course Tailwind CSS Comment Box
Tailwind CSS Login React
Swagger .NET Core Web API JWT Setup
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…
JSX in React TypeScript Explained Simply
React is a JS library that allows you to make web UI’s that is very similar to HTML. JSX is for more strict compared to HTML and it is dynamic. You may be asking yourself, why use JSX when we have HTML? In order to use JSX, you must do…