Want to know, how to solve "Get minimum element from stack" question?
(07 Sept - Problem of the day)
Check out the video: https://youtu.be/zMoaKB0iiAg
(07 Sept - Problem of the day)
Check out the video: https://youtu.be/zMoaKB0iiAg
YouTube
Get minimum element from stack | Problem of the Day-07/09/21 | Siddharth Hazra
Free resources that can never be matched, presented to all our Geeks for free! Subscribe now and start practicing today: https://www.youtube.com/channel/UCXQnpama_0lAzj_4MAdZ5vw/videos\
Solve the Problem of the day and test yourself: https://practice.ge…
Solve the Problem of the day and test yourself: https://practice.ge…
"Problem of the Day"
Solve this question to get points
There are a total of N tasks, labeled from 0 to N-1. Some tasks may have prerequisites, for example to do task 0 you have to first complete task 1, which is expressed as a pair: [0, 1]
Full Problem: https://practice.geeksforgeeks.org/problems/prerequisite-tasks/1
Solve this question to get points
There are a total of N tasks, labeled from 0 to N-1. Some tasks may have prerequisites, for example to do task 0 you have to first complete task 1, which is expressed as a pair: [0, 1]
Full Problem: https://practice.geeksforgeeks.org/problems/prerequisite-tasks/1
practice.geeksforgeeks.org
Prerequisite Tasks | Practice | GeeksforGeeks
There are a total of N tasks, labeled from 0 to N-1. Some tasks may have prerequisites, for example to do task 0 you have to first complete task 1, which is expressed as a pair: [0, 1]
Given the total number of tasks N and a list of prerequisite pair
Given the total number of tasks N and a list of prerequisite pair
Don't let this opportunity slip away from your hands. GeeksforGeeks brought to you a 6-months Paid Internship at GeeksforGeeks in any of the teams like Software Development, Course Video Mentors, Content, etc. Now's the time to Learn, Intern and Earn with Elite Batch 2021.
Check out the video: https://youtu.be/XfQ0uXO6tAE
Check out the video: https://youtu.be/XfQ0uXO6tAE
YouTube
GeeksforGeeks Elite Batch | Learn, Intern and Earn with GeeksforGeeks | Become an Elite Geek Today!
Register now for the test: https://practice.geeksforgeeks.org/contest/geeksforgeeks-elite-batch-entrance-test/
Opportunities don't knock anymore, it's right here in front of you. Don't let it go! A fresher seeking to step into the competitive world of programming…
Opportunities don't knock anymore, it's right here in front of you. Don't let it go! A fresher seeking to step into the competitive world of programming…
Want to know, how to solve "Detect Loop in linked list" question?
(08 Sept - Problem of the day)
Check out the video: https://youtu.be/0JMlxXwAz9c
(08 Sept - Problem of the day)
Check out the video: https://youtu.be/0JMlxXwAz9c
YouTube
Detect Loop in linked list | Problem of the Day-08/09/21 | Siddharth Hazra
Submit your solutions here-: https://practice.geeksforgeeks.org/problems/detect-loop-in-linked-list/1
Free resources that can never be matched, presented to all our Geeks for free! Subscribe now and start practicing today: https://www.youtube.com/channe…
Free resources that can never be matched, presented to all our Geeks for free! Subscribe now and start practicing today: https://www.youtube.com/channe…
"Problem of the Day"
Solve this question to get points
Given a string str and another string patt. Find the first position (considering 0-based indexing) of the character in patt that is present at the minimum index in str.
Full Problem: https://practice.geeksforgeeks.org/problems/minimum-indexed-character-1587115620/1
Solve this question to get points
Given a string str and another string patt. Find the first position (considering 0-based indexing) of the character in patt that is present at the minimum index in str.
Full Problem: https://practice.geeksforgeeks.org/problems/minimum-indexed-character-1587115620/1
practice.geeksforgeeks.org
Minimum indexed character | Practice | GeeksforGeeks
Given a string str and another string patt. Find the minimum index of the character in str that is also present in patt.
Example 1:
Input:
str = geeksforgeeks
patt = set
Output: 1
Explanation: e is the character
Example 1:
Input:
str = geeksforgeeks
patt = set
Output: 1
Explanation: e is the character
We believe that practical exposure is one of the considered factors when it comes to interviews, and not just reading the interviews questions and answers. When you have practical exposure, you can automatically form answers just by looking at the questions.
Read the full article for practical tips: https://www.geeksforgeeks.org/django-interview-questions-answers-with-practical-tips-for-junior-developers/
Read the full article for practical tips: https://www.geeksforgeeks.org/django-interview-questions-answers-with-practical-tips-for-junior-developers/
Want to know, how to solve "Prerequisite Tasks" question?
(09 Sept - Problem of the day)
Check out the video: https://youtu.be/FK7VLwOU5oY
(09 Sept - Problem of the day)
Check out the video: https://youtu.be/FK7VLwOU5oY
YouTube
Prerequisite Tasks | Problem of the Day-10/09/21 | Siddharth Hazra
Submit your solutions here-: https://practice.geeksforgeeks.org/problems/prerequisite-tasks/1
Free resources that can never be matched, presented to all our Geeks for free! Subscribe now and start practicing today: https://www.youtube.com/channel/UCXQnp…
Free resources that can never be matched, presented to all our Geeks for free! Subscribe now and start practicing today: https://www.youtube.com/channel/UCXQnp…
Attention 2020 and 2021 graduates!!
Want to know more about Elite Batch?
Check out today's webinar at 11 AM with Mr. Sandeep Jain.
Set Reminder: https://youtu.be/XQlSp6RPO5w
Want to know more about Elite Batch?
Check out today's webinar at 11 AM with Mr. Sandeep Jain.
Set Reminder: https://youtu.be/XQlSp6RPO5w
"Problem of the Day"
Solve this question to get points
Given a binary matrix M of size n X m. Find the maximum area of a rectangle formed only of 1s in the given matrix.
Full Problem: https://practice.geeksforgeeks.org/problems/max-rectangle/1
Solve this question to get points
Given a binary matrix M of size n X m. Find the maximum area of a rectangle formed only of 1s in the given matrix.
Full Problem: https://practice.geeksforgeeks.org/problems/max-rectangle/1
practice.geeksforgeeks.org
Max rectangle | Practice | GeeksforGeeks
Given a binary matrix M of size n X m. Find the maximum area of a rectangle formed only of 1s in the given matrix.
Example 1:
Input:
n = 4, m = 4
M[][] = {{0 1 1 0},
{1 1 1 1},
{1 1 1 1},
{1 1 0 0}}
Output: 8
Explanatio
Example 1:
Input:
n = 4, m = 4
M[][] = {{0 1 1 0},
{1 1 1 1},
{1 1 1 1},
{1 1 0 0}}
Output: 8
Explanatio
"Problem of the Day"
Solve this question to get points
You will be given an array A of N non-negative integers. Your task is to find the rightmost non-zero digit in the product of array elements.
Full Problem: https://practice.geeksforgeeks.org/problems/right-most-non-zero-digit1834/1
Solve this question to get points
You will be given an array A of N non-negative integers. Your task is to find the rightmost non-zero digit in the product of array elements.
Full Problem: https://practice.geeksforgeeks.org/problems/right-most-non-zero-digit1834/1
practice.geeksforgeeks.org
Right most non zero digit | Practice | GeeksforGeeks
You will be given an array A of N non-negative integers. Your task is to find the rightmost non-zero digit in the product of array elements.
Example 1:
Input:
N = 4, A = {3, 23, 30, 45}
Output:
5
Explanation:
Product of these
Example 1:
Input:
N = 4, A = {3, 23, 30, 45}
Output:
5
Explanation:
Product of these
Create your own GUI YouTube Video Downloader with us. Isn't it exciting?
With this video, add one more skill to your skill-set in python. Here, we will create a GUI project using the Python Tkinter and pytube library that will allow the user to download any video from YouTube conveniently.
Check out the video: https://youtu.be/hLlDSC8NVGY
With this video, add one more skill to your skill-set in python. Here, we will create a GUI project using the Python Tkinter and pytube library that will allow the user to download any video from YouTube conveniently.
Check out the video: https://youtu.be/hLlDSC8NVGY
YouTube
Create GUI for Downloading YouTube Video using Python | GeeksforGeeks
In this video, we're going to discuss how to create a GUI YouTube Video Downloader using Python. YouTube is a very popular video-sharing website and downloading a video/playlist from YouTube is a tedious task. But, here we will create a GUI project using…
"Problem of the Day"
Solve this question to get points
Given a sorted dictionary of an alien language having N words and k starting alphabets of standard dictionary. Find the order of characters in the alien language.
Full Problem: https://practice.geeksforgeeks.org/problems/alien-dictionary/1
Solve this question to get points
Given a sorted dictionary of an alien language having N words and k starting alphabets of standard dictionary. Find the order of characters in the alien language.
Full Problem: https://practice.geeksforgeeks.org/problems/alien-dictionary/1
www.geeksforgeeks.org
Alien Dictionary | Practice | GeeksforGeeks
Given a sorted dictionary of an alien language having N words and k starting alphabets of standard dictionary. Find the order of characters in the alien language.Note: Many orders may be possible for a particular test case, thus you ma
Missed a chance to submit your article? No worries, for the technical writer inside you, the date has been extended, so what are you waiting for!! Now's the time to showcase your technical and writing skills altogether.
For more details, click here: https://www.geeksforgeeks.org/blogathon-2021-write-from-home-contest-by-geeksforgeeks/?ref=ghb
For more details, click here: https://www.geeksforgeeks.org/blogathon-2021-write-from-home-contest-by-geeksforgeeks/?ref=ghb
Learn how you can create a perfect portfolio as a Content Writer to stand out among others. Content Writing allows you to showcase your expertise, enhances your research & creativity skills, gets you freelancing opportunities, and in fact, you can pursue a full-time career as a Content Writer.
Click to watch the full video: https://youtu.be/VkWYOc3IY_k
Click to watch the full video: https://youtu.be/VkWYOc3IY_k
YouTube
Create a Perfect Portfolio as a Content Writer | GeeksforGeeks
Start Your Journey With GeeksforGeeks: https://write.geeksforgeeks.org/
Want to get some exciting prizes or rewards for your writing skills? If yes, then do participate in
GeeksforGeeks Blogathon 2021 - a write-from-home contest where all you need to do…
Want to get some exciting prizes or rewards for your writing skills? If yes, then do participate in
GeeksforGeeks Blogathon 2021 - a write-from-home contest where all you need to do…
"Problem of the Day"
Solve this question to get points
Given a linked list of N nodes such that it may contain a loop.
A loop here means that the last node of the link list is connected to the node at position X. If the link list does not have any loop, X=0.
Full Problem: https://practice.geeksforgeeks.org/problems/remove-loop-in-linked-list/1
Solve this question to get points
Given a linked list of N nodes such that it may contain a loop.
A loop here means that the last node of the link list is connected to the node at position X. If the link list does not have any loop, X=0.
Full Problem: https://practice.geeksforgeeks.org/problems/remove-loop-in-linked-list/1
www.geeksforgeeks.org
Remove loop in Linked List | Practice | GeeksforGeeks
Given the head of a linked list that may contain a loop. A loop means that the last node of the linked list is connected back to a node in the same list. The task is to remove the loop from the linked list (if it exists).
Custom Input format:
A
Custom Input format:
A
Hey Geeks,
Our newsletter of September's edition is out now. Come and explore all the geeky things with us.
Download your copy now: https://bit.ly/GeeksDigestSeptember
Our newsletter of September's edition is out now. Come and explore all the geeky things with us.
Download your copy now: https://bit.ly/GeeksDigestSeptember
100days of Code with GFG starts tomorrow.
Here's a remarkable opportunity, knocking at your door to master the coding skills & problem-solving abilities.
To know more, click here: https://www.geeksforgeeks.org/100-days-of-code-with-gfg-get-committed-to-a-challenge/
Here's a remarkable opportunity, knocking at your door to master the coding skills & problem-solving abilities.
To know more, click here: https://www.geeksforgeeks.org/100-days-of-code-with-gfg-get-committed-to-a-challenge/
"Problem of the Day"
Solve this question to get points
Given an array of size N containing only 0s, 1s, and 2s; sort the array in ascending order.
Full Problem: https://practice.geeksforgeeks.org/problems/sort-an-array-of-0s-1s-and-2s4231/1
Solve this question to get points
Given an array of size N containing only 0s, 1s, and 2s; sort the array in ascending order.
Full Problem: https://practice.geeksforgeeks.org/problems/sort-an-array-of-0s-1s-and-2s4231/1
practice.geeksforgeeks.org
Sort an array of 0s, 1s and 2s | Practice | GeeksforGeeks
Given an array of size N containing only 0s, 1s, and 2s; sort the array in ascending order.
Example 1:
Input:
N = 5
arr[]= {0 2 1 2 0}
Output:
0 0 1 2 2
Explanation:
0s 1s and 2s are segregated
into ascending order.
Example 2:
Example 1:
Input:
N = 5
arr[]= {0 2 1 2 0}
Output:
0 0 1 2 2
Explanation:
0s 1s and 2s are segregated
into ascending order.
Example 2:
Who says Geeks don't have any fun? This Programmers' Day, we've got a present for you - The Geek Song!
Encapsulating all our feelings during the ongoing placement season, this song is by a programmer, to a programmer and for all the programmers.
Listen to this Geek Song: https://youtu.be/5pF1zOr3zl0
Encapsulating all our feelings during the ongoing placement season, this song is by a programmer, to a programmer and for all the programmers.
Listen to this Geek Song: https://youtu.be/5pF1zOr3zl0
Want to know, how to solve "Remove loop in Linked List" question?
(14 Sept - Problem of the day)
Check out the video: https://youtu.be/vxv4x6jqHMQ
(14 Sept - Problem of the day)
Check out the video: https://youtu.be/vxv4x6jqHMQ
YouTube
Remove loop in Linked List | Problem of the Day 14/09/21 | Siddharth Hazra | GeeksforGeeks Practice
Submit your solutions here-: https://practice.geeksforgeeks.org/problems/remove-loop-in-linked-list/1
Free resources that can never be matched, presented to all our Geeks for free! Subscribe now and start practicing today: https://www.youtube.com/channel…
Free resources that can never be matched, presented to all our Geeks for free! Subscribe now and start practicing today: https://www.youtube.com/channel…