Ball Catcher Game in Python

By Vedant Vachharajani

It is not a difficult job to combine the concepts of game development with reinforcement learning and make a program play the game on its own. In this article, we are going to deve.... Read More

Passing and storing lambda function as callbacks in C++

By Mohammad Mustafa

Lambda functions are one of the most exciting features which are present in C++ programming (C++11). Lambda functions(also referred to as closures) are just like normal functions w.... Read More

std::is_integral template in C++ with examples

By Nimish Dham

Fundamental data types in C++ can be broadly divided into three categories: Integral, floating point and void type. An integral data type can be one of the following: int types- sh.... Read More

Java program to swap all odd and even bits

By Caushik Subramaniam

Actually, 0 and 1 can do a lot. In fact, the reason behind today’s technology is, of course, 0 and 1. Any field, say, for instance, Networking, relies upon binary. If one of .... Read More

Josephus problem and recursive solution in Python

By Meetali Tomer

In this tutorial, we will learn how to solve the Josephus problem recursively in Python. Josephus Problem In Josephus problem, n people are standing in a circle waiting to be execu.... Read More

Hadamard Matrix In C++

By Nimish Dham

Hadamard matrix was created as a solution to Hadamard’s maximum determinant problem which is to find a matrix with the maximum possible determinant where an element of the ma.... Read More

Code Bloating in C++ with Examples

By Mohammad Mustafa

In this tutorial, we will be learning Code Bloating in C++ with some examples. Whenever a programmer has to write a code using C++, He/She has to ensure that the code is fast and e.... Read More

Java Program to remove odd frequency characters in a string

By Mohit Goswami

In this tutorial, we are going to remove the characters from a string that appears an odd number of times in it. We are going to use HashMap in JAVA to improve our time complexity .... Read More

Related Posts