Binary search lower bound in Python

By Diptam Paul

In this tutorial, we will learn about the Binary Search Lower Bound in Python. So before that let’s know what is Binary Search. So, for example, you have a sorted list or a s.... Read More

How to compare between string in C++

By Tanmaay Kankaria

In this article, we are going to learn how to compare two strings in C++ language. After the user enters the two strings to be compared we can use the strcmp() function which is a.... Read More

Python PIL image blend() method

By Sameer Saxena

Many times we need to merge two images into a single image for giving it some special effects, therefore we need to know how to blend these two images in Python or merge them. So I.... Read More

Get IP address from hostname in C++ for Windows

By Meghana Thatikonda

In this tutorial, we are going to learn what is an IP address, hostname and later we will learn how to get the IP address from the hostname for Windows in C++ program. Each device .... Read More

How to set, clear and toggle a single bit in C++

By Ranjeet V

In this tutorial, we will learn how to set, clear and toggle a single bit in C++. We will use bitwise operators in our program in order to do this. See more on this further in this.... Read More

Python: Check if all the elements in a list are equal

By Ranjeet V

Hello everyone, in this tutorial, we are going to see how we can write a Python program to check if all the elements in a list are equal. We can accomplish this in many ways. A few.... Read More

Python next() Function with examples

By Ranjeet V

This tutorial discusses the python next() function with examples. This is an in-built function that helps us to iterate over an iterator if the length has not been given. next() fu.... Read More

Find a specific file in a directory in C++

By Ayush Tripathi

Hello, guys in this tutorial we will learn about how to find a specific file in a directory in  C++. We will look at some examples then we move further. Directory- C:\\Users\\MyPC.... Read More

Related Posts