Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
HankMcCoy
on Sept 28, 2011
|
parent
|
context
|
favorite
| on:
Sudoku Solver in 140 bytes
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
rimantas
on Sept 28, 2011
|
next
[–]
http://en.wikipedia.org/wiki/Short-circuit_evaluation
The same applies to i--||+a in the first loop.
mrud
on Sept 28, 2011
|
prev
[–]
if g is true call the function R with the parameter a
Consider applying for YC's Summer 2026 batch! Applications are open till May 4
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
g&&R(a)
I simply don't understand it as a statement and I don't get in the context of the for-loop