I brought this to SO, to ask people how to write a code to do it. The other day i was reading a question over Tower of Hanoi problem, and i remembered when the first time i saw/discussed in one of the classes (i think DS), it was easy to find the logic to solve the question. And still was never able to implement it. Later, when the programming solution was discussed, I was like ah yes. The point is, not all the puzzles so called programmer-puzzles asked in interviews to check "if you can code" are programmable. Especially for this one, when i tried to implement a solution for the below mentioned puzzle, all i could write was an iterative solution, which was so specific, that it looked like as if am just coding the liter division from paper into C.
The question:
There are two bottles of 10 liter each filled with water. Now two persons having bottles of 4 liter and 5 liters want to take 2-2 liters of water from the previous bottles. And you have to pour the water without wasting or throwing it.
Just like Tower of Hanoi, which i thought at point is not possible to code, but it was, may be same is true for this one, to wpf such question which are generic in nature (i mean by changing the values of bottles or outputs).
