Posts by Abinash Reddy

Author Biographical Info: Deeply interested in Machine Learning, Deep Learning, and Software Development

Convert Image into a Pencil Sketch in Python

By Abinash Reddy

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

Credit Card Validation in Java

By Abinash Reddy

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

How to read CSV file in Java

By Abinash Reddy

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

Brick Sort in Python

By Abinash Reddy

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

C++ program to convert an array into Zig-Zag fashion

By Abinash Reddy

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

How to Find Sum of Nodes in a Binary Tree in C++

By Abinash Reddy

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

Python Program to calculate the value of nPr

By Abinash Reddy

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

Python program to check whether given array can form Arithmetic Progression

By Abinash Reddy

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

Related Posts