Posts by Karun Thannickal
Author Biographical Info: Not available
In this tutorial, we will look at how to find the longest correct bracket subsequence for a range. We implement this in C++. Bracket sequences are character arrays consisting of on.... Read More
In, this tutorial we learn how to implement a Superellipse in Python. We do this with the help of the NumPy and Matplotlib libraries. We use NumPy to conveniently access mathematic.... Read More
In this tutorial, we will learn about the mbrtoc16() function and mbrtoc32() function in C++. They are both declared in the cuchar header in C++. We use these functions to work wit.... Read More
In this tutorial, we will learn about how to create a simple Port Scanner in C++. Port scanners are programs that attempt connection to the server via the specified ports. We use t.... Read More
In this tutorial, we will learn about the compiler error C2065 in C++. We look at possible reasons for this error and their corresponding solutions. The error message displayed for.... Read More
In this tutorial, we will learn about using the Hurst exponent in Python. The Hurst exponent is a useful parameter in dealing with time-series. It is a measure of a time-series to .... Read More
In this tutorial, we will look at how to add two numbers represented in base 14 in C++. The number system that we see the most in our daily lives is the base 10 or ‘decimal.... Read More