All Medium Articles
There is a famous saying that most of you might have listened, “One man’s trash is another man’s treasure”. That means what one person considers… Read More
Given an array arr[] of integers. The task is to return the length of the maximum size sub-array such that either one of the condition… Read More
Pre-Requisite: IEEE Standard 754 Floating Point NumbersWrite a program to find out the 32 Bits Single Precision IEEE 754 Floating-Point representation of a given real… Read More
Given two integers N and M which denote the number of persons of Type1 and Type2 respectively. The task is to find the maximum number… Read More
Authentication, the process of identifying and validating an individual is the rudimentary step before granting access to any protected service (such as a personal account).… Read More
Simpson’s Paradox in layman’s term is the reversal of relationship within data with respect to the subgroups of data after combining those subgroups data. For… Read More
Given an integer N, the task is to find out whether it can be written as a sum of 2 triangular numbers (which may or… Read More
The term LEVEL refers to a Pseudocolumn in Oracle which is used in a hierarchical query to identify the hierarchy level (parent->child) in numeric format.… Read More
A Data warehouse is a heterogeneous collection of different data sources organized under unified schema. Builders should take a broad view of the anticipated use… Read More
Often times we want to create a list containing a continuous value like, in a range of 100-200. Let’s discuss how to create a list… Read More
The slug field within Django models is a pivotal step for improving the structure and readability of URLs in web applications. This addition allows developers… Read More
Constructors are used to initializing the object’s state. Like methods, a constructor also contains a collection of statements(i.e. instructions) that are executed at the time… Read More
This was a hiring drive at the Chennai office. Round 1: Written Round Question 1: Longest Palindrome in a String Question 2: Transform to Sum Tree Question… Read More
Given an undirected graph of V nodes (V > 2) named V1, V2, V3, …, Vn. Two nodes Vi and Vj are connected to each… Read More
Given string str containing lowercase alphabets (a – z). The task is to print the string after rearranging some characters such that the string becomes… Read More
Let’s make a simple keyboard racing game using Python. In the game, the participant clicks a pair of keys in quick succession and the program… Read More
The flush() method of Writer Class in Java is used to flush the writer. By flushing the writer, it means to clear the writer of… Read More
Given string str of length n (n is a multiple of 3) containing characters only from the set {0, 1, 2}. The task is to… Read More
Given an integer array arr[], the task is to check if the input array can be split in two sub-arrays such that:  Sum of both… Read More
Given an integer n (in seconds), convert it into hours, minutes and seconds.  Examples: Input : 12345 Output : 3:25:45 Input : 3600 Output :… Read More