Amazon Interview Question

First phone interview coding question: Write a function that splits a filename of the form "hello#123"

Interview Answer

Anonymous

Oct 15, 2015

My first solution was to use Pythons String.split :). But once I actually implemented the solution myself the question was used to investigate my knowledge of big O scaling, some basic testing considerations and generally how I approached the problem.