DiscoverLeetcode: Solving Leetcode Problems in Hindi
Leetcode: Solving Leetcode Problems in Hindi
Claim Ownership

Leetcode: Solving Leetcode Problems in Hindi

Author: tornado

Subscribed: 6Played: 80
Share

Description

- My efforts are to summarize precise solutions in simple Hindi to decrease the interview preparation time.
15 Episodes
Reverse
Design In-Memory file system to simulate following functions. LS, mkdir, addcontentstofile, rewdcontentsfromfile
Designing Tic Tac Toe in o(1) complexity. Also thinking how to design infinite Tic Tac toe
SQL Processing order

SQL Processing order

2020-09-2203:56

How should you read an SQL query - of course the way SQL parser does
SQL joins in Hindi
Rotting oranges

Rotting oranges

2020-11-1006:29

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
Number of islands

Number of islands

2020-11-0504:14

Given a grid, find number of islands. We use depth first search.
Traverse a tree or a graph using DFS and BFS
Merge K Sorted Lists

Merge K Sorted Lists

2020-11-0507:58

Given a an array of Sorted K linked lists, merge all K lists in one Sorted linked-list and return it.
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.
Simplify Path

Simplify Path

2020-10-1505:32

Given a Unix style absolute path, simplify it and return the shortest canonical path
Give a string S and a String T, find the minimum window in S which will contain all characters in T.
Given a list of scheduled for employees in a company, return free time where no employee is working.
Find the celebrity

Find the celebrity

2020-10-0703:22

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

Meeting rooms - II

2020-10-0604:02

Given an array of intervals find minimum number of Chee conference rooms Required.
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.
Comments