digits

JavaF

Digits Printer

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

Two Digits Numbers Sum

Accept an array of N values and print the sum S of all the two digit numbers present in the array. If there are no two digit numbers, print…
PythonF

Digits Division Count

A number N is passed as input to the program. The program must print the count of digits which divide the number N without leaving a…
PythonF

Sum of Last X Digits

Given two integers N and X as input, the program must print the sum of last X digits in the given integer N. Boundary Condition(s):1 <= N…
PythonF

Remove First K Even Digits

The program must accept N integers and an integer K as the input. The program must remove the first K even digits among the digits of N…