Design Jarvis Algorithm using Python

By Balender Singh

In this tutorial, we will learn how to Design Jarvis’s Algorithm using machine learning in Python. It is nothing like Iron man Jarvis coz he does way more things, but our Jar.... Read More

Python | Quantile-Quantile Plot using SciPy

By Anirudh Singh Sengar

Q-Q plot is a plot between Quantile of x (one Variable) and Quantile of y (another Variable). Quantile:  Quantile word comes from the word ‘Quantity’. Quantile is simp.... Read More

Dynamic Attributes in Python

By Anirudh Singh Sengar

If the attribute of an instance is defined after creating an instance then the attribute is known as Dynamic Attribute. Everything in Python is an object. Even functions and method.... Read More

How to check if two given sets are disjoint in Python?

By Anirudh Singh Sengar

If the given two sets don’t have any element in common then it is said to be disjoint. The method isdisjoint() check whether the two sets are disjoint or not. If the sets are.... Read More

Ternary Cantor Set problem in C++

By Tanu Kumari

In this tutorial, we will learn about the Ternary Cantor Set problem in C++. We will learn to write program code for Cantor Set. Firstly, let’s take a look at the Cantor Set..... Read More

Time Limit Exceed error solution in C++

By Tanu Kumari

In this tutorial of CodeSpeedy, we will learn about the Solution of Time Limit Exceed error. If you don’t know anything about the Solution of Time Limit Exceed error and the .... Read More

ElGamal Encryption Algorithm in Python

By Shagun Bidawatka

Elgamal Encryption is a type of asymmetric key algorithm used for encryption. It is used for public-key cryptography and is based on the Diffie-Hellman key exchange. Here, I will i.... Read More

GetAsyncKeyState() function in C++

By Tanu Kumari

GetAsyncKeyState stands for Get Asynchronous Key State in C++. This function gives information about the key, whether the key was pressed up or down at the time when the function i.... Read More

Related Posts