Posts by Dipam Hazra

Author Biographical Info: Not available

Collect all coins in minimum number of steps in Greedy method in Python

By Dipam Hazra

In this tutorial, we will learn how to collect all coins in a minimum number of steps in Python. The process of collecting coins should be contiguous. So, here we have used the gre.... Read More

Vector in Java with examples and explanation

By Dipam Hazra

In this article, we will learn some basic concepts on vector in Java and also provide some examples. We will implement our idea with the help of Java. At first, we will discuss pre.... Read More

Print a string N number of times in Python

By Dipam Hazra

In this article, we will learn how to print a string N number of times using Python. So, here we have to declare first what is a string. Therefore, we can go through our topic and .... Read More

Count total number of words in a text file using Python

By Dipam Hazra

In this tutorial, we will learn how to count the number of words in a text file using Python. We have generated a text file that contains a lot of words. Then our code will read th.... Read More

Find whether an array is subset of another array in Python

By Dipam Hazra

In this article, we will find whether an array is a subset of another array in Python. So, we have to see whether the array is the subset of another array or not. Now, what is suba.... Read More

Matrix transpose without NumPy in Python

By Dipam Hazra

In this article, we will understand how to do transpose a matrix without NumPy in Python. So, first, we will understand how to transpose a matrix and then try to do it not using Nu.... Read More

Inner Functions in Python

By Dipam Hazra

In this article, we will learn about the inner functions in Python. So, now let’s discuss what is the inner function? How does it work in python? We will discuss these whole .... Read More

Construction of Finite Automata in Python

By Dipam Hazra

In this tutorial, we will learn the basic concepts of finite automata and its applications. We will try to execute it in python programming. We will discuss this topic step by step.... Read More

Related Posts