All Medium Articles
Given a string S, the task is to calculate the minimum cost to sort the string in increasing order of their frequencies by swapping a… Read More
Naive Bayes algorithms are a group of very popular and commonly used Machine Learning algorithms used for classification. There are many different ways the Naive… Read More
Given an integer N, the task is to print all the possible ways in which N can be written as the sum of two or… Read More
Given an array of items, an ith index element denotes the item id’s, and given a number m, the task is to remove m elements… Read More
A Computer Virus is malicious software or Malware which has capacity to affect computer data, by corrupting or destroying it. When computer virus is executed… Read More
Advanced RISC Machine (ARM) Processor is defined as family of CPUs that have wide usage in electronic devices such as smartphones, wearable, tablets and multimedia… Read More
1. Microservices : Microservices Architecture is an architectural style that structures an application as a collection of small autonomous services modeled around a business domain. In… Read More
A number can always be represented as a sum of squares of other numbers. Note that 1 is a square, and we can always break… Read More
Given a matrix board[][] consisting of the characters K or k, Q or q, B or b, N or n, R or r, and P… Read More
1. Skype : Skype is a telecommunication application that provides video calls and voice calls between mobile phones. computers and other devices. It requires internet… Read More
Given an integer K and a matrix of size N x M, where each matrix element is equal to the product of its indices(i *… Read More
Given a string str which has various HTML Entities in it, the task is to replace these entities with their corresponding special character. HTML entity… Read More
Given a string str, the task is to check if string str is a substring of an infinite length string S in which lowercase alphabets… Read More
Sudoku is a logic-based, combinatorial number-placement puzzle. The objective is to fill a 9×9 grid with digits so that each column, each row, and each… Read More
Prerequisite: Python Turtle Basics Turtle is an inbuilt module in Python. It provides drawing using a screen (cardboard) and turtle (pen). To draw something on… Read More
Given an array arr[], the task is to rearrange the array to generate maximum decreasing subsequences and print the count of the maximum number of… Read More
Given a number N and two arrays arr1[] and arr2[] of length 4. The array arr1[] denotes the denomination of 1, 5, 10, and 20… Read More
ARM stands for Advanced RISC Machine. It is one of the most licensed and extensive processor cores in the world. In the year of 1978,… Read More
Given an integer number N, the task is to convert it into a character array. Example:   Input: N = 2020 Output: {2, 0, 2, 0} Explanation:… Read More