tf-idf Model for Page Ranking in Python

By Aman Kumar

The tf-idf stands for Term frequency-inverse document frequency. It is a weighing schema that measures the frequency of every term in a document of the corpus. These weight vectors.... Read More

Implementation of Rabin Cryptosystem in Java

By Mainak Halder

Hello Learners, today We are going to learn about Rabin Cryptosystem and implement it in Java language. Rabin Cryptosystem is a public-key cryptosystem discovered by Michael Rabin..... Read More

Image Recognition in Python using Machine Learning

By Shagun Bidawatka

Image Recognition is the process of providing a category to the image. We have to train our machine and build a model that can recognize the image for this purpose we use Keras and.... Read More

Find k numbers with most occurrences in the given Python array

By Vamsi Krishna

In this tutorial, we shall find k numbers with most occurrences in the given Python array. The inputs shall be the length of the array, its elements, and a positive integer k. We s.... 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

Create a spelling checker using Enchant in Python

By Anirudh Singh Sengar

In Python, Enchant is a built-in module. It helps in checking the spelling of the word, suggesting the correct words related to the misspelled word. MySpell, ispell, aspell are a f.... Read More

C++ Program to find all prime numbers in a Linked List

By Vamsi Krishna

In this tutorial, we shall be printing all the prime numbers in a Linked List. Given a singly linked list, the aim is to print the nodes containing a prime number. A prime number i.... Read More

Implement stack using list in Python

By Vamsi Krishna

In this tutorial, we shall implement a stack using list in Python. A stack is a Linear Data Structure that uses a LIFO (Last In First Out) methodology. Unlike other programming lan.... Read More