Write a program to convert number to word For example:467Four hundred sixty seven 2321Two thousand three hundred twenty one Solution:
Get all prime number for the given number using Sieve of Eratosthenes algorithm For example: Input8 Output2, 3, 5, 7 Solution:
Write a program to get the prime factor of given number. for example: Solution:
Three numbers can be said as Pythagorean Triplet when a>b>c and a2 + b2 = c2. Write a program to determine the given numbers set…
Equilibrium index is an index when the sum of elements at lower indexes is equal to the sum of elements at higher indexes. Write a…
Write a program to accept the list of strings and prints them, one per line, in a rectangular frame. For example: Solution:
Write a program to accept the number and returns a list of its digits. For example Solution:
Write a programme to demonstrated Priority Queue using Heap Solution: