Student Data Management implementation using C++

By Tanu Kumari

In this tutorial of CodeSpeedy, we will learn about the Student Data Management implementation using C++ in a very simple way. Firstly, A data management system is a system softwar.... Read More

What are Deepfakes in terms of Machine Learning

By Shagun Bidawatka

Deepfakes is the artificial media, it may be image, audio, or video. Here, we will discuss What are Deepfakes, How are they created, their pros and cons. What are Deepfakes? Deepfa.... Read More

Click module in Python

By Shagun Bidawatka

Click package in Python is used to create command-line (CLI) applications. It was created for the Flask Web Development as a supporting library. Here, we will discuss in detail abo.... Read More

Feature Scaling in Machine Learning using Python

By Shagun Bidawatka

When we work on machine learning models, we go through datasets that had multiple features with varying properties. So, it becomes an obstacle to our machine learning algorithm. Fe.... Read More

Find paths from corner cell to middle cell in maze in Python

By Harsh Parmar

In this tutorial, we will learn about how we can find paths from corner cell to middle cell in a square maze in Python. So first we need to understand which type of maze input we a.... Read More

Minimum delete operations to make all elements of array same in Java

By Alok Sinha

Hello friends, today we are going to see the Java implementation of minimum delete operations to make all elements of the array the same. Firstly we will see an algorithm to demons.... Read More

C++ program to swap bits in a number

By Nishant Soni

Today we will learn how to swap bits in C++ language. Given an integer n and two-bit positions a1 and a2 inside it, swap bits at the given positions. The given positions are from t.... Read More

Lambda with if but without else in Python

By Abhishek Kaushik

Hello Friends, in this tutorial we will look at what happens when we write a lambda function with if statement and do not use else and what happens if we use if along with else in .... Read More