Tagged Questions

17
votes
21answers
3k views

Programming Riddle: How might you translate an Excel column name to a number?

I was recently asked in a job interview to resolve a programming puzzle that I thought it would be interesting to share. It's about translating Excel column letters to actual numbers, if you recall, ...
5
votes
3answers
335 views

Algorithmic riddle: sequence with random access, insertion and remotion

Describe a data structure where: Any item is indexed by an integral value like in an array an integer can index a single value integers used to index items are contiguous: they go from 1 to n ...
3
votes
1answer
76 views

Tiling rectangle with fixed size tiles

I have been struggling with finding a convenient solution for the following problem: Suppose we have a wall of a given size and 4 types of tiles of sizes 4 x 2, 2 x 2, 2 x 1, 1 x 1. There are certain ...
2
votes
5answers
244 views

Collection of well defined abstract programming tasks

I'm looking for a site or book or any other source of tiny programming tasks one can implement in preferred language. Would be great if examples are present too. And would be superb if there're people ...
1
vote
3answers
106 views

Complexity of an old Top Coder riddle: Making a number by inserting +

This is a follow up to my previous question (about an old top coder riddle). Given a string of digits, find the minimum number of additions required for the string to equal some target number. ...