Tagged Questions

7
votes
5answers
7k views

Javascript callback functions and recursion

This is kind of a brainteaser question, since the code works perfectly fine as-is, it just irritates my aesthetic sense ever so slightly. I'm turning to Stack Overflow because my own brain is failing ...
4
votes
1answer
374 views

convert a number to the shortest possible character string while retaining uniqueness

I have a list of digits number, say "123456", and I need to map it to a string, any string. The only constraint on the map functions are: each list of digits number must map to a unique character ...
1
vote
3answers
190 views

Javascript Brainteaser - Reverse Number Determining

Lets say I have a list of numbers in the following form(Ignore the | they are there for formating help). 00|00|xx 00|xx|00 xx|00|00 etc. Rules: XX can be any number between 1 and 50. No XX values ...
0
votes
4answers
609 views

Dynamic javascript select dropdown

This was interesting. In a select dropdown, trying not to use jQuery (with the exception of easing some of my pain on recreation), I ran into an issue that doesn't properly let any current browsers ...