This site uses cookies. By continuing to browse the site you are agreeing to our use of cookies.
Coding Questions
Coding Problem: Nth Fibonacci
Given a number n, find the Fibonacci series up to the n term.
Coding Problem: Validate Subsequence
Give two non-empty array of integers, write a method that determines whether the second array is a subsequence of the first one.
Coding Problem: Array of Products
Given an array of n integers, construct a Product Array of same size where each element of output array is equal to the product of...
Coding Problem: Two Number Sum
Given an array and a number x, check for pair in array with sum as x.