C++ program to find Shortest unique prefix for each word in an array

By Sakshi Singh

In this tutorial, We’ll learn how to find the shortest unique prefix for every word in an array using C++. Assume that no word from the array is the prefix of the other. This.... Read More

How To Add Elements In JSON Array Using JavaScript

By Anjan Nair

In this tutorial, you will learn how to add elements in JSON array using JavaScript. JSON short for JavaScript Object Notation is a text-based representation of structured data. JS.... Read More

C++ Program to find Largest divisible subset in array

By Sakshi Singh

In this tutorial, We will learn how to return largest divisible subset in an array using C++. A subset is said to be divisible if every pair (subset[i], subset[j]) of subset satisf.... Read More

Search for a range in a sorted array using C++

By Sakshi Singh

In this tutorial, we will learn how to search for a range of an element in the given sorted array in C++. Consider a given sorted array A with possibly duplicate elements. We have .... Read More

Java Code to download files from internet in android studio

By Jai Chaudhry

In this tutorial, we will write code to download file in android studio using Java. You can use any latest version of Android Studio. Let’s get started Create a new project w.... Read More

Programming Arduino Uno as a binary up-counter using Python’s pyfirmata module

By Rohan Harish

In this tutorial, we are going to learn how to establish a connection between Arduino and Python script to control the Arduino. We can understand this better by this example of imp.... Read More

Kth Row of Pascal’s Triangle using Python

By Amrit Pratyay

In this lesson, we will learn and solve how to print the Kth Row of Pascal’s triangle in Python using simple operations. Start with the definition of Pascal’s Triangle. Pas.... Read More

Dynamic Prefixes In Discord Bots Using Memjs and Heroku

By Anjan Nair

Small Discord bots often hosted on platforms such as Heroku do not have the flexibility to change their command prefixes. Command prefixes examples of Discord bots are !, ?, > e.... Read More

Related Posts