Reading blob object in Python using wand library

By Vedant Vachharajani

This article is about reading a blob object using wand library in Python. But before doing that, we need to define what a blob object is. BLOB stands for Binary Large Object. Blob .... Read More

Methods vs Functions in C++ with Examples

By Amit Raja Kalidindi

In this tutorial, we are going to learn about the aspects that make methods different from functions in C++. A function contains a set of instructions that are used to perform a sp.... Read More

Decrementing an iterator in C++

By Amit Raja Kalidindi

In this tutorial, we are going to learn how to decrement an iterator in C++. These are used to traverse through the elements of the containers. All containers in C++ do not support.... Read More

How to check if two given sets are disjoint in C++

By Amit Raja Kalidindi

In this tutorial, we are going to learn how to check if two sets are disjoint in C++. Two sets are disjoint if the sets do not have any common elements. Naive Approach Let us consi.... Read More

Interactive California map in JavaScript

By Parvez Akhtar Pasha

In this tutorial, we are going to create an interactive map of California with JavaScript. California is so popular state of the United States. So let’s see how we can create.... Read More

Implementation of Bitonic Sort in C++

By Amrita Sony

Hello, Learners today we will learn Bitonic Sort and implement it in C++ programming. The Bitonic sort is a sorting algorithm whose time complexity is O(n log2n). Unlike Merge sort.... Read More

Solve Word Wrap Problem in Python

By Monish C

Hello Everyone! In this tutorial, we are going to learn how to solve word wrap problem in Python. Word wrapping is nothing but splitting the sequence of words into separate lines b.... Read More

Implementation of Comb sort in Python

By Aayush Dubey

Hello Everyone! In this tutorial, we will learn about Comb Sort and how to implement Comb Sort in Python. The first algorithm which most of the students learn is Bubble Sort. It is.... Read More