All Medium Articles
Given an integer N and an infinite number of Full Binary Trees of different depths, the task is to choose minimum number of trees such… Read More
Given an array arr[] of N elements, the task is to remove one element from the array such that the XOR value of the array… Read More
In Go, language, a function is called a Higher-Order Function if it fulfills one of the following conditions:1. Passing Functions as an Argument to Another… Read More
Given array seats[] where seat[i] is the number of vacant seats in the ith row in a stadium for a cricket match. There are N… Read More
Given two strings X and Y containing lower-case alphabets, the task is to check whether any permutation of string X exists in Y as its… Read More
Given a knapsack with capacity C and two arrays w[] and val[] representing the weights and values of N distinct items, the task is to… Read More
Given a string str that consists of lowercase English letters and brackets. The task is to reverse the substrings in each pair of matching parentheses,… Read More
Imagine you are a tourist in a country and your local guide is a robot. Or you are watching the early morning news and the… Read More
Cheating in programming is acceptable. If you are stuck in your code, google it or try to find the answer from other resources. It’s a… Read More
In Python, a module is a self-contained Python file that contains Python statements and definitions, like a file named GFG.py, can be considered as a… Read More
The process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function. Recursion makes… Read More
The arguments that are given after the name of the program in the command line shell of the operating system are known as Command Line… Read More
Round 1: TECHNICAL TEST (ONLINE) It included basic array questions like dividing money according to given problem statement (mostly arrays) practice must do questions from… Read More
The ImagickDraw::steganoImage() function is an inbuilt function in PHP which is used to hide a digital watermark within the image. Watermark can be a simple… Read More
I applied in October 2019 through Employee Referral. The process for me consisted of 2 Technical Interviews, followed by a Technical+Managerial Round taken by their… Read More
Given a tree with N nodes, the task is to find the sum of lengths of all the paths. Path length for two nodes in… Read More
There are N cities situated on a straight road and each is separated by a distance of 1 unit. You have to reach the (N… Read More
Given a tree with N nodes and N – 1 edges. Each edge of the tree is labeled by a string of lowercase english alphabets.… Read More
Given a binary tree, the task is to convert it into a sorted linked list.Examples:  Input: 1 / \ 2 3 Output: 1 2 3… Read More
A directory is a location where files can be stored. For Ruby, the Dir class and the FileUtils module manages directories and the File class… Read More