Linux is an open-source and community-developed operating system for computers, servers, mainframes, mobile devices, and embedded devices.
If you also want to start with Linux, then this webinar is for you. Watch Mr. Durga Viswanatha, from Itversity, discussing the beginner's guide for Linux.
Join the live stream at 6:00 PM IST today: https://youtu.be/Y94zjcrMEJg
If you also want to start with Linux, then this webinar is for you. Watch Mr. Durga Viswanatha, from Itversity, discussing the beginner's guide for Linux.
Join the live stream at 6:00 PM IST today: https://youtu.be/Y94zjcrMEJg
"Problem of the Day"
Solve this question to get points
Given an array arr[] of integers of size N that might contain duplicates, the task is to find all possible unique subsets.
Full Problem: https://bit.ly/3Mjj5sT
Solve this question to get points
Given an array arr[] of integers of size N that might contain duplicates, the task is to find all possible unique subsets.
Full Problem: https://bit.ly/3Mjj5sT
practice.geeksforgeeks.org
Unique Subsets | Practice | GeeksforGeeks
Given an array arr[] of integers of size N that might contain duplicates, the task is to find all possible unique subsets.
Note: Each subset should be sorted.
Example 1:
Input: N = 3, arr[] = {2,1,2}
Output:(),(1),(1 2),(1 2 2),(2),(2 2)
Exp
Note: Each subset should be sorted.
Example 1:
Input: N = 3, arr[] = {2,1,2}
Output:(),(1),(1 2),(1 2 2),(2),(2 2)
Exp
"Problem of the Day"
Solve this question to get points
Given an array containing N integers and a positive integer K, find the length of the longest sub array with sum of the elements divisible by the given value K.
Full Problem: https://bit.ly/39RF7og
Solve this question to get points
Given an array containing N integers and a positive integer K, find the length of the longest sub array with sum of the elements divisible by the given value K.
Full Problem: https://bit.ly/39RF7og
practice.geeksforgeeks.org
Longest subarray with sum divisible by K | Practice | GeeksforGeeks
Given an array containing N integers and a positive integer K, find the length of the longest sub array with sum of the elements divisible by the given value K.
Example 1:
Input:
A[] = {2, 7, 6, 1, 4, 5}
K = 3
Output: 4
Explanation:The su
Example 1:
Input:
A[] = {2, 7, 6, 1, 4, 5}
K = 3
Output: 4
Explanation:The su
Data structure and algorithms are an integral part of computer science. They are different yet very much interrelated topics. This interrelation brings out the big question that needs to be answered: βWhat should I learn first β data structures or algorithms?β
Let's answer this question with this blog: https://bit.ly/3lgjYGI
Let's answer this question with this blog: https://bit.ly/3lgjYGI
"Problem of the Day"
Solve this question to get points
Given an array of distinct elements which was initially sorted. This array is rotated at some unknown point. The task is to find the minimum element in the given sorted and rotated array.
Full Problem: https://bit.ly/3sFgVfs
Solve this question to get points
Given an array of distinct elements which was initially sorted. This array is rotated at some unknown point. The task is to find the minimum element in the given sorted and rotated array.
Full Problem: https://bit.ly/3sFgVfs
practice.geeksforgeeks.org
Minimum Number in a sorted rotated array | Practice | GeeksforGeeks
Given an array of distinct elements which was initially sorted. This array is rotated at some unknown point. The task is to find the minimum element in the given sorted and rotated array.
Example 1:
Input:
N = 10
arr[] = {2,3,4,5,6
Example 1:
Input:
N = 10
arr[] = {2,3,4,5,6
π1
Heroku is a one-stop solution to host any website or server. With this video, we'll be learning to deploy Django Application on Heroku step by step.
We just need to install Heroku and CLI Log in to the Heroku account create an app and fire some commands to migrate on the Heroku application to execute the following query.
To get started, watch the full video: https://bit.ly/3sHhvJL
We just need to install Heroku and CLI Log in to the Heroku account create an app and fire some commands to migrate on the Heroku application to execute the following query.
To get started, watch the full video: https://bit.ly/3sHhvJL
"Problem of the Day"
Solve this question to get points
Given a string you need to print all possible strings that can be made by placing spaces (zero or one) in between them. The output should be printed in sorted increasing order of strings
Full Problem: https://bit.ly/3Mu4CL0
Solve this question to get points
Given a string you need to print all possible strings that can be made by placing spaces (zero or one) in between them. The output should be printed in sorted increasing order of strings
Full Problem: https://bit.ly/3Mu4CL0
practice.geeksforgeeks.org
Permutation with Spaces | Practice | GeeksforGeeks
Given a string you need to print all possible strings that can be made by placing spaces (zero or one) in between them. The output should be printed in sorted increasing order of strings
Example 1:
Input:
S = "ABC"
Output: (A B C)
Example 1:
Input:
S = "ABC"
Output: (A B C)
Undoubtedly, Java has been the most famous and widely used programming language out there. By 2022, Java has already entered its 27th Anniversary and thereβs no looking back.
If you really think you know all about Java, then this article will make you think harder. Let's explore those top 7 things you didnβt know about JAVA.
Read more in the article: https://bit.ly/3lmgnHm
If you really think you know all about Java, then this article will make you think harder. Let's explore those top 7 things you didnβt know about JAVA.
Read more in the article: https://bit.ly/3lmgnHm
Watch this webinar, where Ms. Supriya J Nath, HR Manager, and Somya Joshi, IT Recruiter Human Resource @ SpeckyFox will talk about the vacancies in SpeckyFox & hiring procedure it follows to hire new talent with the mission and vision of SpeckyFox.
Also, let's tour the OPPORTUNITIES FOR TECH FRESHERS:
- Advice for entry-level developers in any organization / the developers who are looking for their first job
- Vacancies that are there in NEC & the hiring procedures to hire new talent
Join the live stream at 5:00 PM IST: https://youtu.be/V_TQ92ER_Co
Also, let's tour the OPPORTUNITIES FOR TECH FRESHERS:
- Advice for entry-level developers in any organization / the developers who are looking for their first job
- Vacancies that are there in NEC & the hiring procedures to hire new talent
Join the live stream at 5:00 PM IST: https://youtu.be/V_TQ92ER_Co
"Problem of the Day"
Solve this question to get points
Given two strings A and B. Find the minimum number of steps required to transform string A into string B.
Full Problem: https://bit.ly/3yLBL0p
Solve this question to get points
Given two strings A and B. Find the minimum number of steps required to transform string A into string B.
Full Problem: https://bit.ly/3yLBL0p
practice.geeksforgeeks.org
Transform String | Practice | GeeksforGeeks
Given two strings A and B. Find the minimum number of steps required to transform string A into string B. The only allowed operation for the transformation is selecting a character from string A and inserting it in the beginning of string A.
Example
Example
This media is not supported in your browser
VIEW IN TELEGRAM
It takes effort to take a good article to its best and rewards are the best way to encourage the efforts of participants.
Participate in this Content Improvement League, brought to you by GeeksforGeeks. Come and become of this event.
Know more in detail in this blog: https://bit.ly/3woK011
Participate in this Content Improvement League, brought to you by GeeksforGeeks. Come and become of this event.
Know more in detail in this blog: https://bit.ly/3woK011
Love to share GYAAN on camera! π
Join our team as a Video Content Creator, freelancer. Create content that is UNSKIPPABLE.
If you're in, go to the link: https://script.geeksforgeeks.org/on-boarding/youtube
Join our team as a Video Content Creator, freelancer. Create content that is UNSKIPPABLE.
If you're in, go to the link: https://script.geeksforgeeks.org/on-boarding/youtube
"Problem of the Day"
Solve this question to get points
Imagine you have a special keyboard with all keys in a single row. The layout of characters on a keyboard is denoted by a string S1 of length 26.
Full Problem: https://practice.geeksforgeeks.org/problems/228d0aa9f26db93ee5b2cb3583dbd4b197447e16/1
Solve this question to get points
Imagine you have a special keyboard with all keys in a single row. The layout of characters on a keyboard is denoted by a string S1 of length 26.
Full Problem: https://practice.geeksforgeeks.org/problems/228d0aa9f26db93ee5b2cb3583dbd4b197447e16/1
practice.geeksforgeeks.org
A Special Keyboard | Practice | GeeksforGeeks
Imagine you have a special keyboard with all keys in a single row. The layout of characters on a keyboard is denoted by a string S1 of length 26. S1 is indexed from 0 to 25. Initially, your finger is at index 0.
To type a character, you have to move
To type a character, you have to move
Watch this webinar with Mr. Deepak Bhatia, Vice President infrastructure and Services at Egon Zehnder will talk about the vacancies in Egon Zehnder & hiring procedure it follows.
Also opportunities for tech freshers with -
1) Advice for entry level developers
2) Hiring procedure to hire new talent
Join the live stream at 7:00 PM IST today: https://www.youtube.com/watch?v=R0Mtfdf4WYE
Also opportunities for tech freshers with -
1) Advice for entry level developers
2) Hiring procedure to hire new talent
Join the live stream at 7:00 PM IST today: https://www.youtube.com/watch?v=R0Mtfdf4WYE
Let's have a cup of Java with this Java Coding Quiz. β
Solve this quiz of 15 MCQs based on JAVA programming language and get assured rewards. π Submit your entry by 21st May, 11:59 PM IST.
Participate now: https://bit.ly/3wCv3Hr
Solve this quiz of 15 MCQs based on JAVA programming language and get assured rewards. π Submit your entry by 21st May, 11:59 PM IST.
Participate now: https://bit.ly/3wCv3Hr
"Problem of the Day"
Solve this question to get points
Given an array Arr[] of size N. For every element in the array, the task is to find the index of the farthest element in the array to the right which is smaller than the current element.
Full Problem: https://practice.geeksforgeeks.org/problems/1a31d09f7b8e9c0633339df07858deb3a728fe19/1
Solve this question to get points
Given an array Arr[] of size N. For every element in the array, the task is to find the index of the farthest element in the array to the right which is smaller than the current element.
Full Problem: https://practice.geeksforgeeks.org/problems/1a31d09f7b8e9c0633339df07858deb3a728fe19/1
practice.geeksforgeeks.org
Farthest number | Practice | GeeksforGeeks
Given an array Arr[] of size N. For every element in the array, the task is to find the index of the farthest element in the array to the right which is smaller than the current element. If no such number exists then print -1.
Note: 0
Note: 0
Get ready to bag the job you've wanted for so long!
Job opportunities for Freshers and Interns are here.π€© Register now for JOB-A-Thon 9. 0. Happening in 21st May, 8:00-10:30 PM IST.
To register now: https://practice.geeksforgeeks.org/contest/job-a-thon-9-hiring-challenge
Job opportunities for Freshers and Interns are here.π€© Register now for JOB-A-Thon 9. 0. Happening in 21st May, 8:00-10:30 PM IST.
To register now: https://practice.geeksforgeeks.org/contest/job-a-thon-9-hiring-challenge
"Problem of the Day"
Solve this question to get points
Given a string S on which you need to perform Q replace operations.
Each replacement operation has 3 parameters: a starting index i, a source word x and a target word y.
Full Problem: https://practice.geeksforgeeks.org/problems/find-an-replace-in-string/1
Solve this question to get points
Given a string S on which you need to perform Q replace operations.
Each replacement operation has 3 parameters: a starting index i, a source word x and a target word y.
Full Problem: https://practice.geeksforgeeks.org/problems/find-an-replace-in-string/1
practice.geeksforgeeks.org
Find an Replace in String | Practice | GeeksforGeeks
Given a string S on which you need to perform Q replace operations.
Each replacement operation has 3 parameters: a starting index i, a source word x and a target word y. The rule is that if x starts at position i in the original string S, then we wi
Each replacement operation has 3 parameters: a starting index i, a source word x and a target word y. The rule is that if x starts at position i in the original string S, then we wi
"Problem of the Day"
Solve this question to get points
There are a total of n tasks you have to pick, labeled from 0 to n-1. Some tasks may have prerequisites tasks, for example to pick task 0 you have to first finish tasks 1, which is expressed as a pair: [0, 1]
Full Problem: https://bit.ly/3wALEfV
Solve this question to get points
There are a total of n tasks you have to pick, labeled from 0 to n-1. Some tasks may have prerequisites tasks, for example to pick task 0 you have to first finish tasks 1, which is expressed as a pair: [0, 1]
Full Problem: https://bit.ly/3wALEfV
practice.geeksforgeeks.org
Course Schedule | Practice | GeeksforGeeks
There are a total of n tasks you have to pick, labeled from 0 to n-1. Some tasks may have prerequisites tasks, for example to pick task 0 you have to first finish tasks 1, which is expressed as a pair: [0, 1]
Given the total number of n tasks and a
Given the total number of n tasks and a
Heyyaaa Geeks, π€
Which superpower would you like to have?
Which superpower would you like to have?
Anonymous Poll
31%
Detecting bugs/errors in one go π§
69%
Write your own code without googling π