Leetcode: Solving Leetcode Problems in Hindi cover

Leetcode: Solving Leetcode Problems in Hindi

tornado
Latest available episode Rotting oranges Ready to listen
0:00 6 min 29 s

15 Episodes

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...

Number of islands

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

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.

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...

Simplify Path

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

Design In-Memory file system

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

Find the celebrity

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