Tagged Questions

12
votes
8answers
2k views

recursion: cut array of integers in two parts of equal sum - in a single pass

Using recursion, find an index that cuts an array in two parts so that both parts have equal sum. Cut means to cut like with a knife. All the cells with index <= to the result must be equal in ...
4
votes
2answers
329 views

How can I solve The Riddle of Nine 9's programmatically?

How can I solve this riddle programmatically? Could someone help me with some pseudo-code or something? Nine 9s Combining nine 9's with any number of the operators +, -, *, /, (, ), what is the ...