Posts by Abinash Reddy
Author Biographical Info: Deeply interested in Machine Learning, Deep Learning, and Software Development
In this article, we will learn how to build flashcards in Python. A flashcard is a card having data on the two sides, which can be utilized as a guide in memorization. Flashcards g.... Read More
In this article, we will learn how to check whether the given number n is a Moran Number in Python. A number is said to be Moran Number if it is divisible by the sum of its digits.... Read More
In this article, we will learn how to find the largest node in a Doubly linked list in C++. A doubly linked list is a type of linked list where every node has three fields 1. data .... Read More
In this article, we will learn to find the second largest element in a Linked list in C++. A linked list is a linear collection of data(nodes) that are stored randomly in the memor.... Read More
In this article, we will learn how to check if a given array contains all the elements in the given range in Python. Example arr[] = {2, 6, 7, 8, 9, 10, 12, 14} range = {5, 10} Out.... Read More
In this post, we will learn how to sort a Python array according to the frequency of each string. For example, let’s consider an array Input arr = ['Monday', 'Tuesday', 'Wedn.... Read More
We are living in a digital world, where data is stored online across many servers and warehouses. To protect data from theft, data need to be encrypted so that the end-user canR.... Read More
In this article, we will learn how to find the sum of nodes at the maximum level of a binary tree in C++. Example Input: 8 / \ 7 6 / \ / \ 3 2 1 4 Output: Sum of nodes at maximum l.... Read More