All Hard Articles
Given a number find all the possible mappings of the characters in sorted order.Examples:   Input: 123 Output: ABC AW LC Explanation: 1 = A; 2… Read More
Given a matrix arr[][] of size MxN, the task is to find the number of contiguous palindromic sequences of odd length in that matrix. Example: … Read More
Interview conducted for (1-4) year experienced C/C++ developer. Programming Language allowed C or C++. Round 1: It was a simple Coding for 3 hours. Questions… Read More
A stack is implemented with an array of ‘A[0…N – 1]’ and a variable ‘pos’. The push and pop operations are defined by the following… Read More
Capsule Neural Network also known as CapsNet is an artificial neural network (ANN) in machine learning to designed to overcome limitations of traditional convolutional neural… Read More
In this article, it is explained how to create an Android App that has a Facebook login in it. There are various social login features… Read More
Map in Python : Map is used to compute a function for different values ‘in a single line of code ‘ . It takes two… Read More
Given two strings str and str1, the task is to check whether one string can be converted to other by using the following operation:   Convert… Read More
The Floyd-Rivest algorithm is a selection algorithm used to find the kth smallest element in an array of distinct elements. It is similar to the… Read More
It was a Professional level coding test, where we were given 4 hours to solve One problem. There is a highway that has damages at… Read More
Delete View refers to a view (logic) to delete a particular instance of a table from the database. It is used to delete entries in… Read More
Sorting has always been quite a popular utility with lots of applications everywhere, which Python language has opted for. Python in its language offers a… Read More
Round 1: Question 1: Find the element that appears once in an array where every other element appears twice in less than O(n). Array is sorted.… Read More
Given an N*M matrix containing only 0s and 1s, the task is to count the number of square submatrices containing all 1s. Examples:  Input: arr[][]… Read More
When we no longer require data, we usually prefer to erase or delete it so that space can be used up by other data that… Read More
Introduction : The International Data Encryption Algorithm (IDEA) is a symmetric-key block cipher that was first introduced in 1991. It was designed to provide secure… Read More
Given two integer arrays P[] and Q[], where pi and qj for each 0 <= i < size(P) and 0 <= j < size(Q) represents… Read More
Given the current time in the form of HH::MM, where H represents the hours and M, represents the minutes in a 24-hour time format. The… Read More