Slashdot Mirror


User: spkog

spkog's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:How would I recognize a good programmer? on How to Recognize a Good Programmer · · Score: 2, Interesting

    "A; B; while(F) { C; D; A; B;} C; D;" from "while (F) {A; B; C; D; }" works only if the loop always iterates 2 or more times. If F is not true or F is true for 1 iteration, the proposed substitution is incorrect.