16 Jan 2018
Question Definition
You are given coins of different denominations and a total amount of money. Write a function to compute the number of combinations that make up that amount. You may assume that you have infinite number of each kind of coin.
More …
Question Definition
Implement a basic calculator to evaluate a simple expression string.
The expression string contains only non-negative integers, +, -, *, / operators and empty spaces . The integer division should truncate toward zero.
You may assume that the given expression is always valid.
More …
Question Definition
Given an unsorted array nums, reorder it such that nums[0] < nums[1] > nums[2] < nums[3]
….
More …
Question Definition
Given a singly linked list L: L0→L1→…→Ln-1→Ln,
reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…
You must do this in-place without altering the nodes’ values.
More …
Question Definition
Given a list of non negative integers, arrange them such that they form the largest number.
More …