Coders Packet

Packets submitted by Jasdeep Singh

Creating a Recursive function to convert a given string into Number in Java.

We will be writing a java code that will take input as a numeric string that contains only numbers, will be converting the string into corresponding integer and then return the number.

Inverted Number Pattern in Java

We will be given an input number N, then we have to print the given pattern corresponding to that number. We have to write this code using Java language.

Remove Consecutive duplicate characters from a string in Java using recursion.

In this tutorial, we will learn how to remove duplicate characters from a given string using the Java program. We will learn it using recursion method.