Given a positive integer N, the task is to check if the given number N can be represented as the product of two positive perfect… Read More
Tag Archives: maths-perfect-cube
Given a positive integer N, the task is to check whether N can be represented as the difference between two positive perfect cubes or not.… Read More
Given a positive integer L, the task is to find all the Ramanujan Numbers that can be generated by any set of quadruples (a, b,… Read More
Given an integer N, the task is to check if N can be represented as the sum of two positive perfect cubes or not. Examples:… Read More
Given an integer N, the task is to check if this number can be represented as the sum of two consecutive perfect cubes or not.… Read More
Given a number N, the task is to write C program to check if the given number is perfect cube or not. Examples: Input: N… Read More
Given a number N, the task is to check if the number N can be represented as the difference of two consecutive cubes or not.… Read More
Given an integer N, the task is to find the number of factors of N that are a perfect cube. Examples: Input: N = 27Output:… Read More
Given the size of array N, the task is to construct an array of size N with positive integer elements such that the cube sum… Read More
Given an integer N, the task is to find the previous perfect square or perfect cube smaller than the number N.Examples: Input: N = 6 Output: Perfect… Read More
Given two numbers a and b, the task is to check whether the concatenation of a and b is a perfect cube or not.Examples: Input:… Read More
Given a number N, the task is to find distinct N numbers such that their product is a perfect cube.Examples: Input: N = 3 Output: 1,… Read More
Given an array arr of distinct elements of size N, the task is to find the total number of pairs in the array whose sum… Read More