Posts by Abinash Reddy
Author Biographical Info: Deeply interested in Machine Learning, Deep Learning, and Software Development
In this article, we learn how to check whether a given array is a k sorted array or not in Python. An array is said k sorted array if each element in the array is at most k distanc.... Read More
In this article, we will learn how to implement N-Bonacci Numbers in Python. N-Bonacci Numbers are similar to the Fibonacci series but in the N-Bonacci series, each term is the sum.... Read More
In this article, we will learn how to compare two text files in Python. We will try to implement this problem by using various methods. Files used in examples file1 file2 Method 1:.... Read More
In this article, we will implement a program to rearrange the digits of a given number to form the smallest possible number in Python. We will rearrange the number such that it for.... Read More
In this article, we will learn how to get key with maximum value in Dictionary in Python. Dictionary is used to store the data value in key: value pair. A dictionary is a mutable, .... Read More
We have seen and played many dice games link snake-ladder, poker, etc. Have you ever wonder how to build them? In this article, we will build a simple dice game in Python using Tur.... Read More
In this article, we will write a program to find the first non-repeating element in the given array in C++. Example Input: arr[] = {2, 3, 4, 5, 2, 5, 4, 1, 3} Output: 1 Input: arr[.... Read More
In this article, we will learn how to find the median array for a Binary tree in C++. A median array is an array that formed with help of Inorder, Preorder, Postorder traversal of .... Read More