All Easy Articles
We had discussed the ways to generate unique id’s in Python without using any python inbuilt library in Generating random Id’s in Python In this… Read More
Given a binary tree containing n nodes. The problem is to find and print the largest value present in each level. Examples:  Input : 1… Read More
In many cases, we need to check the value of something returned by a function and perform conditional operations based on this value. So our… Read More
Given a string containing alphabets in lowercase and uppercase, find the maximum count of distinct lowercase alphabets present between two uppercase alphabets. Examples :  Input… Read More
Given a n x n matrix. The problem is to sort the matrix row-wise and column wise. Examples:  Input : mat[][] = { {4, 1,… Read More
Given a linked list, split the linked list into two with alternate nodes. Examples:  Input : 1 2 3 4 5 6 7 Output :… Read More
Given a binary tree, find the largest value in each level. Examples :  Input : 1 / \ 2 3 Output : 1 3Input :… Read More
Dialogue boxes are a kind of popup notification, this kind of informative functionality is used to show success, failure, or any particular/important notification to the… Read More
Given a linked list, print the alternate nodes of the linked list. Examples: Input : 1 -> 8 -> 3 -> 10 -> 17 -> 22… Read More
Breadth-first search traversal of a graph using the algorithm given in CLRS book. BFS is one of the ways to traverse a graph. It is… Read More
The array_replace() function is a builtin function in PHP and it takes a list of arrays separated by commas (,) as parameters and replaces all… Read More
Given source and destination text files. Append the content from the source file to the destination file and then display the content of the destination… Read More
Program to find the speed of man in km/hr, given the speed of stream in km/hr. Assume that the man takes n times (where n… Read More
The header file graphics.h contains outtextxy() function which displays the text or string at a specified point (x, y) on the screen. Syntax : void… Read More
Microsoft came to our campus in which around 170 people participated. First Round: This was conducted on CoCubes.com where we had to solve 3 questions… Read More
Given a linked list, and a number, check if their exist two numbers whose sum is equal to given number. If there exist two numbers,… Read More
A String is a data structure in Python Programming that represents a sequence of characters. It is an immutable data type, meaning that once you… Read More
Given a number n, find n-th Fibonacci Number. Note that F0 = 0, F1 = 1, F2 = 2, …..  Examples :  Input : n… Read More
Given an array, find elements that appear a prime number of times in the array with a minimum k frequency (frequency >= k). Examples :  … Read More
A workshop on Competitive programming was held by GeeksforGeeks-GLA University on 25 January, 2018 at GLA University Campus. It was highly honourable to have a… Read More