How to Add Nodes to Linked Lists in Python

By Karthik Desingu

This post discusses how to add nodes to a linked list as well as display the contents of a linked list in Python. While linked lists are mainly associated with pointers, a concept .... Read More

python program for reverse of a number using type casting

By Prakash Raj

In this tutorial, we are going to learn how to reverse a given number within two lines of code in Python using the type casting method. How to reverse a number (optimum solution) i.... Read More

Print the largest number below ‘n’ which does not contain the digit ‘k’ in java

By Sameer

In this tutorial, we are going to understand another string utilization problem. Learn how to print the largest number below ‘n’ which does not contain the digit ‘.... Read More

Preorder tree Traversal using Recursion in Java

By Kollabathula Preetham

Hey coders! There are multiple ways to traverse a tree in Java. In this tutorial, we will learn one of the three ways of DFS ( depth-first search ) that is Preorder tree Traversal .... Read More

Missing characters to make string pangram in Java

By Sameer

In this tutorial, we will find what are the missing characters in a given string to make it a pangram in Java. What is a pangram? A pangram is a sentence that contains all the alph.... Read More

Binary to Decimal conversion in Java

By snormy

This tutorial would help in learning the following: Conversion of numbers from binary-system (0 and 1) to decimal-system (using 0 to 9) in Java. Re-conversion of characters into t.... Read More

Binary to Decimal conversion in C++

By snormy

This tutorial would help in learning the following: Conversion of numbers from binary to decimal in C++. Re-conversion of characters into their respective ASCII codes Code for Bin.... Read More

Searching in a sorted and rotated array using Java

By Tanisha Saxena

In this tutorial, we will see how to search an element in a sorted and rotated array using Java. Here, our challenge is to search the element in such an array in o(log n) time comp.... Read More

Related Posts