All Medium Articles
In this article, ExpandableBottomBar is added in android using Kotlin. It is the substitute for BottomNavigationView. BottomNavigationView makes it easy for users to explore and… Read More
In this article, LoadingButton is added in android. LoadingButton provides us an amazing UI and an animation whenever the user taps on it. It is… Read More
In this article, ToolTipopupWord is added in android. Basically it is a popup window that appears when a word or some text is long pressed… Read More
KYC is a process by which banks obtain information about the identity and address of the purchasers. It’s a regulator governed process of performing due… Read More
Given two Strings, separated by delim, check if both contain same characters. Input : test_str1 = 'e!e!k!s!g', test_str2 = 'g!e!e!k!s', delim = '!' Output :… Read More
The Javascript anchor() method creates an anchor element that is used as a hypertext target that means when you use the anchor method in JavaScript… Read More
Given a String extract indices of uppercase characters. Input : test_str = ‘GeeKsFoRGeeks’  Output : [0, 3, 5, 7, 8]  Explanation : Returns indices of… Read More
In this article, PopView is added to android. When users tap on the view a pop animation with a circular dust effect will appear. A… Read More
Given an array arr[] having N integers. The task is to determine if the array can be partitioned into 3 subsequences of an equal sum… Read More
Given an array arr[] of N distinct integers points on the 2D Plane. The task is to count the number of Right-Angled Triangle from N… Read More
Given an array arr[] of N integers, the task is to find the smallest subarray brr[] of size at least 2 such that by performing… Read More
Given a string S containing lowercase English alphabets of length N and an integer K such that K ? N. The task is to find… Read More
Given an integer N, the task is to find the smallest composite number which is not divisible by first N prime numbers. Examples: Input: N… Read More
Cyber hacking competitions serve as platforms for participants to showcase their knowledge, problem-solving abilities, and teamwork in simulated cyber attack and defense scenarios. They cover… Read More
Virtual function: Virtual function is a member function which is declared within a base class and is redefined by a derived class. Inline function: Inline… Read More
Circular queue: Circular Queue is a linear data structure in which the operations are performed based on FIFO (First In First Out) principle and the… Read More
Round 1: Round one was an online test conducted on hackerearth platform and was open to all the branches. The test had 5 sections with… Read More
The ClipRRect widget in flutter is used to clips its child using a rounded rectangle.  It associates with the Clippers family. The main use of… Read More
Given a String, extract all the numbers that are percentages. Input : test_str = ‘geeksforgeeks 20% is 100% way to get 200% success’ Output :… Read More