Java

Java

JavaF

Digits Printer

Given a number N. print all the digits of the number N in descending order. Boundary Condition:0 <= N <= 99999999999999 Input…
JavaF

Sort – Odd & Even Ascending

An array of N numbers is passed as the input. The program must sort the odd numbers and even numbers separately in ascending order. The odd…
JavaF

Reverse Columns In Matrix

Given a square matrix of size N, reverse column values in the matrix and print the modified matrix as the output. Boundary Condition:1<= N…
JavaF

Expand alphabets occurrence

A string consisting of short hand form of occurrence of alphabets will be passed as input. The program must expand the code and print the…