Tagged Questions
8
votes
2answers
584 views
Developer Interview question - wrongly asked or am I stupid?
There's a blog post comment on this page: http://www.codinghorror.com/blog/2010/02/the-nonprogramming-programmer.html#comments by Paul Jungwirth which includes a little programming task:
"You have ...
5
votes
5answers
869 views
Code Challenge - Convert var_dump of array back to array variable
I have never really thought about this until today, but after searching the web I didn't really find anything. Maybe I wasn't wording it right in the search.
Given an array (of multiple dimensions or ...
5
votes
6answers
425 views
Keeping even numbered elements of an array?
Say I have an $input array, that contains something like this :
array
0 => string 'a' (length=1)
1 => string 'b' (length=1)
2 => string 'c' (length=1)
3 => string 'd' (length=1)
...
4
votes
1answer
372 views
Is there a faster/better way to leettime?
I found leettime via twitter, and it's novel enough for me to want to mess around with it/share it with you guys. To my dismay this version doesn't do seconds. It also seems like there might be a more ...
4
votes
2answers
262 views
Features needed when building a ORM with PHP?
I have never really appreciated ORM's so I think that the only way to remedy this is to build a basic one myself so I can see what all the hubbub is. So with that in mind, what are the basic features ...
-1
votes
3answers
1k views
Solve this PHP puzzle in as few bytes as possible
*EDIT: since some folk's panties are apparently bunching uncomfortably over this, how about just recommending some efficient ways of dealing with similar code? Maybe not specific answers to the ...