Blogs
Python Is Love
Today I am going to talk about Python language. If you follow me you will know that I really love this language from web development to solving dsa problems. It is my first real language that I learned on my own (my first programming language is c but I just copied code from friend to pass the class …
N Queens
The link to problem: leetcode/n-queens The problem is very famous for practicing backtracking, in this problem the questioneer is asking how to arrange n number of queens in a nxn matrix. Now if you think this can be done using backtracking where we place a queen at every position and check if the …
Blog Pic Generator
Blog Pic Generator If you read my blogs about solving question you will see a similar pic for my blog at top of my page. This pic is generated using a web-application that I have made using Python. Technologies I have made this web application using Python framework Flask, and Jinja templates. How …