Home
Mohd Irfan
Cancel
List Comprehensions

Welcome | Irfan's Blog

Welcome to my blog! I’m Irfan, a passionate software engineer from India, dedicated to developing software solutions that tackle real-world challenges. With a bachelor’s degree in Computer Science ...

Simple CRUD Django App

01. Simple CRUD Django App

Before you start, make sure you have installed Python on your computer. If you haven’t installed it yet, you can download it here. After installing Python, if you want to use the virtual environme...

Elastic Stack

01. Introduction to Elastic Stack

Elastic Stack Elastic Stack is a collection of open-source products from Elastic designed to help users take data from any type of source and in any format and search, analyze, and visualize that ...

931. Minimum Falling Path Sum

931. Minimum Falling Path Sum import math # INT_MAX = 100 x 100 class Solution: def solve(self, row, col, matrix): # if 0 <= col <= self.m: # # Do This if col...

Jekyll in One Shot

Jekyll is a static site generator. It’s super popular and it’s really useful when you want to build a blog or static site. Let’s say you want to build blog but you don’t want to get involve in som...

test quizzes

Learning

Machine learning is an application of artificial intelligence (AI) that provides systems the ability to automatically learn and improve from experience without being explicitly programmed. Machine ...

JavaScript in One Shot

01. History of JavaScript History In 1995, A Netscape (browser) programmer named “Brandan Eich” developed a scripting language in just 10 days. Originally name (first name):- Mocha Second name:...

BFS: Breadth First Search

Graph Practice Questions S.No. Questions Platform Solutions 1. Breadth First Search: Shortest Reach HackerRank Solutio...

Equal Stacks

Equal Stacks

Problem: Equal Stacks Solution 1: Using while loop and if-else statement def equalStacks(h1, h2, h3): s1, s2, s3 = sum(h1), sum(h2), sum(h3) while h1 and h2 and h3: m = min(s1, ...