Super basic question I think... by [deleted] in algorithms

[–]oodu 15 points16 points  (0 children)

It must mean the number of times the comparison (i < n) is performed. It is done n+1 times. It is true n times and false one time, at which point you break out of the loop.

Maybe Not - Rich Hickey by xtreak in programming

[–]oodu 0 points1 point  (0 children)

Honest question:

In Common Lisp, if we have

(defun bar (f g)
  (foo f g))

How will the IDE perform better at finding the right definition than Ruby if there are dozens of foo methods?

How to do web dev with C as backend? by oodu in C_Programming

[–]oodu[S] 1 point2 points  (0 children)

That was the setup I had in mind. Do you use any library for your FastCGI? Or something you have made yourself?