Posts by Abinash Reddy
Author Biographical Info: Deeply interested in Machine Learning, Deep Learning, and Software Development
In this tutorial, we will use computer vision to convert an image into a pencil sketch with the help of the Python OpenCV library. We will use the OpenCVPython library to convert t.... Read More
Payment by credit card is one of the most widely used payment methods. During online transactions, we will enter the credit card number for payment. But have you ever wondered how .... Read More
CSV files are used to save tabular data in plain text format. A delimiter is used to identify and separate different data tokens in the file. There are multiple ways to read CSV fi.... Read More
In this article, we will learn about Brick Sort and its implementation in Python. What is Brick Sort? Brick Sort is also called OddEven Sort. It is essentially a modified version o.... Read More
In this article, we will learn how to convert an array into zig-zag fashion in C++. Let’s consider an array arr with elements {a, b, c, d, e, f, g} the array is said to bein .... Read More
In this article, we will learn how to find the sum of nodes in a binary tree in C++. Example Input: 8 / \ 7 6 / \ / \ 5 4 3 2 Output: 35 Exaplnation: 8+7+6+5+4+3+2 = 35.... Read More
In this article, we will learn how to calculate the value of nPr in Python. Where nPr represented n permutation r. Permutation refers to the process of organizing all the individua.... Read More
In this article, we will check whether given an array can form Arithmetic Progression in Python. Example Input: arr[] = {6, 4, 8, 2, 0} Output: Yes Explanation: Rearrange the given.... Read More