Calculate Poker probabilities in Python

By Rudramani Dubey

When we talk about Poker, we require to analyze the world of shuffled decks.  Basically it belongs to the discrete probability domain. Discussing shuffle, permutation, and combina.... Read More

Concept of Map vs List Comprehension in Python

By Rituparna Mukherjee

Suppose you want to execute a code where you want to define a function in a single line to make your code look simpler in that case you can use List Comprehension or Map() function.... Read More

How to use std::string::rfind in C++

By Gorakh Chavan

In this post, we are going to learn about standard function under the string class which is std::string::rfind this function is used to find the last occurrence of a string. Let.... Read More

How to use std::front_inserter in C ++

By Gorakh Chavan

In this post, we are going to learn about the standard function in C++ std::front_inserter. While it is declared or defined in the header file it can be applied on the container t.... Read More

Binning method for data smoothing in Python

By ZAKIR ALI

In this tutorial, we’ll learn about the Binning method for Data smoothing in Python. Binning is a technique for data smoothing that involves dividing your data into ranges, or bi.... Read More

Write a C++ program to demonstrate Generic Linked List

By Ramneeq Sodhi

Here we are going to make a generic LinkedList so a generic LinkedList is a, Linked list using a void pointer is a generic linked list. That is, it can store any kind of data that.... Read More

Generate random JSON data using C++

By Ramneeq Sodhi

In this tutorial, we are going to learn what is JSON data, what are the advantages of JSON data, and how we can create our own JSON data using C++. JSON is a widely used data struc.... Read More

How to solve Tiling Problem in JavaScript

By Swastik Panja

In this tutorial, we will learn how to solve the Tiling Problem in Javascript. Many of you already know what a Tiling Problem is, still I am going to explain it. We will be using .... Read More

Related Posts