Article Coding Interview Question: Merge Arrays Coding Interview Question: Given sorted arrays A and B, where the length of A is A+B, copy the contents of B into A. Click for the solution.
Article Coding Interview Question: Zero Sum Subarray Coding Interview Question: Given an array, write a function to find any subarray that sums to zero, if one exists. Click for the solution.
Article Coding Interview Question: Permutations Coding Interview Question: Write a function that returns all permutations of a given list. Click for the solution.
Article Coding Interview Question: N Stacks Coding Interview Question: Implement N > 0 stacks using a single array to store all stack data. Click for the solution.
Article Coding Interview Question: Anagrams Coding Interview Question: Given two strings, write a function to determine whether they are anagrams. Click for the solution.