Quickly find multiple left rotations of an array using C++

By Vidhi Jain

The multiple left rotations mean rotating an array n number of times. For eg: array: 1,2,3,4,5 rotating 3 times: 4 5 1 2 3 C++ Code for multiple left rotations For having multiple .... Read More

How to Calculate Skewness and Kurtosis in Python

By Syeda Hina

In this tutorial, we will be looking into How to Calculate Skewness and Kurtosis in Python. We know, in Python when we plot the probability distribution of data, we get bell-shaped.... Read More

Dictionary to Pandas DataFrame in Python

By Isha Bansal

When one studies creating Python Dataframes, Creating a Pandas DataFrame from a dictionary is one of the very common ways. In this tutorial, I’ll guide you through the proces.... Read More

boost is_pointer template in C++

By Vidhi Jain

Let’s talk about boost is_pointer in C++. The is_pointer template of the boost library. It tells if the given type is a pointer or not. It returns the value in boolean. Heade.... Read More

std::next_permutation and std::prev_permutation in C++

By Vidhi Jain

Let’s learn about std::next_permutation and  std::prev_permutation in C++. Let’s first know about permutations: We know that a permutation is the n! possible arrangeme.... Read More

How to Build a QR Code Scanner in SwiftUI

By Saruque Ahamed Mollick

In this tutorial, I will show you how to build a QR code scanner in SwiftUI. Will start with a simple and basic QR code scanner. There will be no button. On opening the App the cam.... Read More

Page numbering – styles, suppress page numbering in LaTeX

By Parvez Akhtar Pasha

In this tutorial, you will learn all about page numbering, how to change page number style, use multiple number styles in the same document, and how to suppress page numbering for .... Read More

Hide the navigation back button in SwiftUI

By Samim

In this tutorial, we will see how to hide the navigation back button in SwiftUI. SwiftUI provides a modifier called navigationBarBackButtonHidden(), by specifying the boolean value.... Read More