Y
Hacker News
new
|
ask
|
show
|
jobs
by
HankMcCoy
5379 days ago
Could someone help with the syntax on line 24:
g&&R(a)
I simply don't understand it as a statement and I don't get in the context of the for-loop
2 comments
rimantas
5379 days ago
http://en.wikipedia.org/wiki/Short-circuit_evaluation
The same applies to i--||+a in the first loop.
link
mrud
5379 days ago
if g is true call the function R with the parameter a
link