Coming Soon

Algorithm-Dynamic Programming

less than 1 minute read

In a nutshell, it’s a method of solving a complex problem by breaking it down into a collection of smaller subproblems, solving them just once, and storing t...

Getting started Git

1 minute read

git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/username/username.github.io.git git push ...