Leetcode: Solving Leetcode Problems in Hindi

- My efforts are to summarize precise solutions in simple Hindi to decrease the interview preparation time.

Design In-Memory file system

Design In-Memory file system to simulate following functions. LS, mkdir, addcontentstofile, rewdcontentsfromfile

10-14
09:54

Design Tic Tac Toe - Leetcode

Designing Tic Tac Toe in o(1) complexity. Also thinking how to design infinite Tic Tac toe

10-07
08:00

SQL Processing order

How should you read an SQL query - of course the way SQL parser does

09-22
03:56

Learn what are joins in SQL

SQL joins in Hindi

09-19
07:15

Rotting oranges

Given a gif, each cell can have one of the three values. 0 for empty, 1 for fresh Orange and 2 for rotten. Return minimum number of minutes that must elapse until no cell has a fresh Orange

11-10
06:29

Number of islands

Given a grid, find number of islands. We use depth first search.

11-05
04:14

Breadth first search and depth first search

Traverse a tree or a graph using DFS and BFS

11-05
03:19

Merge K Sorted Lists

Given a an array of Sorted K linked lists, merge all K lists in one Sorted linked-list and return it.

11-05
07:58

Two sum, Two Sum - II, Three sum

Find two numbers that add up to a Target. Find two numbers in a sorted array that add up to a number. Find three numbers in an array that add up to a Target.

11-05
05:35

Simplify Path

Given a Unix style absolute path, simplify it and return the shortest canonical path

10-15
05:32

Minimum window Substring AND longest Substring with at most K distinct characters

Give a string S and a String T, find the minimum window in S which will contain all characters in T.

10-12
05:36

Employee Free Time or Free intervals.

Given a list of scheduled for employees in a company, return free time where no employee is working.

10-11
05:09

Find the celebrity

Find a celebrity in a room where everyone knows the celebrity and celebrity doesn’t know anyone.

10-07
03:22

Meeting rooms - II

Given an array of intervals find minimum number of Chee conference rooms Required.

10-06
04:02

Leetcode: Verify Alien Dictionary

Given a sequence of words written in the alien language, and the order of the alphabet, return true if and only if the given words are sorted lexicographically in this alien language.

09-14
04:29

Recommend Channels