Question Definition
You are given n pairs of numbers. In every pair, the first number is always smaller than the second number.
Now, we define a pair (c, d) can follow another pair (a, b) if and only if b < c. Chain of pairs can be formed in this fashion.
Given a set of pairs, find the length longest chain which can be formed. You needn’t use up all the given pairs. You can select pairs in any order.
More …
Question Definition
Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. Return the maximum product you can get.
More …
Question Definition
Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1’s in their binary representation and return them as an array.
More …
Question Definition
Given a non-negative integer n, count all numbers with unique digits, x, where 0 ≤ x < 10n.
More …
Question Definition
A sequence of number is called arithmetic if it consists of at least three elements and if the difference between any two consecutive elements is the same.
More …