All Medium Articles
Given a mobile number and some conditions for a fancy number, find if the given number is fancy. A 10-digit mobile number is called fancy… Read More
In order to remove an element from an array, we can use unset() function which removes the element from an array and then use array_values()… Read More
The incredible advancement has been made by the technology over the past 20 years.The future of technology for some it is unsettling, while to others… Read More
Given a string S containing letter and digit and an integer K where, and . The task is to return the K-th letter of the new string… Read More
Round 1 (f2f): Interviewer was very young and directly jumped into the question after introduction. Given an array find the maximum element for all the… Read More
Prerequisites – Introduction to Hadoop, Apache HBase HBase architecture has 3 main components: HMaster, Region Server, Zookeeper.   Figure – Architecture of HBase All the 3 components are described… Read More
Given a positive integer N and K where    and    . The task is to check whether any permutation of digits of N equals… Read More
Given a number represented in the form of an array such that each element of the array stores a single digit of the number. That… Read More
Given a strictly increasing array A of positive integers where,   The task is to find the length of the longest Fibonacci-like subsequence of A. If… Read More
Given a number . The task is to find the largest factor of that number which is a perfect square.Examples:  Input : N = 420Output :… Read More
CORS (Cross-Origin Resource Sharing) is a mechanism by which data or any other resource of a site could be shared intentionally to a third party… Read More
Given an array A and an integer H where and . Each element A[i] represents remaining pending jobs to be done and H represents hours left to… Read More
Prerequisite: Decorators in Python, Function Decorators We know Decorators are a very powerful and useful tool in Python since it allows programmers to modify the… Read More
OpenCV is a Library which is used to carry out image processing using programming languages like python. This project utilizes OpenCV Library to make a… Read More
The Hashtable class represents a collection of key/value pairs that are organized based on the hash code of the key. This class comes under the… Read More
Friends! I recently appeared for OCA exam and scored 95%. Here i am sharing few techniques and exam question patterns which must be helping you… Read More
Java is a general-purpose, high-level programming language developed by Sun Microsystems. It is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies… Read More
Given a HashMap and a key in Java, the task is to check if this key exists in the HashMap or not. Examples: Input: HashMap:… Read More
Given a HashSet in Java, the task is to sort this HashSet. Examples: Input: HashSet: [Geeks, For, ForGeeks, GeeksforGeeks] Output: [For, ForGeeks, Geeks, GeeksforGeeks] Input:… Read More
Given a Linked List in Java, the task is to convert this LinkedList to Array. Examples: Input: LinkedList: ['G', 'e', 'e', 'k', 's'] Output: Array:… Read More