Posts by Priyam Sur

Author Biographical Info: Not available

Array Sorting: How to sort an array of integers in Python3?

By Priyam Sur

ARRAY SORTING in Python Array sorting can be of two types: Ascending Order Sorting: The arrangement of elements of the array is from smallest to largest number. Descending Order So.... Read More

Compound and Simple Interest Calculation using Python

By Priyam Sur

In this tutorial, we are going to write a Python program to calculate compound and simple interest using Python program. I hope you have also done the math related to interest when.... Read More

Duplicate Elements Removal of an Array or List in Python

By Priyam Sur

In this tutorial, you will learn how to remove duplicate elements from an array of list in Python. Duplicate Elements Removal: The user inputs integer elements of an array randomly.... Read More

Clockwise and CounterClockwise Rotation of Matrix using NumPy in Python 3

By Priyam Sur

In this tutorial, we will learn the clockwise and counterclockwise rotation of matrix using NumPy library in Python. We are providing an easy example of each one for a better under.... Read More

Username Validation using Java as per Client’s Requirement

By Priyam Sur

In this Java programming tutorial, we will learn how to validate a username. For making it easy we have provided an easy example of username validation using Java. USERNAME VALIDAT.... Read More

Lexicographical Smallest & Largest Substring of a given Length in JAVA

By Priyam Sur

Before we understand lexicographically ordered substring in Java, we must understand their definitions. In this Java post, we will learn all about these. Lexicographically Ordered .... Read More

Check whether the given parenthesis filled string is balanced? (Java)

By Priyam Sur

In this Java article, you will learn how to check if the parenthesis filled string is balanced or not in JAVA. Here we have provided a Java program on check parenthesis filled st.... Read More

How to find day of the week when entered a date (mm/dd/yyyy) in JAVA?

By Priyam Sur

In this Java tutorial, we gonna learn how to find day of a given date in Java easily. I will show you an easy example so that you can understand it easily. HOW TO FIND DAY OF A GIV.... Read More

Related Posts