Recently I really got disheartened by seeing some code written by redcoders. Why they write POSH style code which nobody understands or at least hard to understand instantly? Is that really necessary? ↵
↵
can you understand this for loop in one go? ↵
~~~~~↵
`for(i=(B<2?2-B:0); i<res; ++i){`↵
~~~~~↵
↵
I think no.↵
↵
- Code should be easy to understand for all↵
↵
Hail to easy code...↵
==================
↵
can you understand this for loop in one go? ↵
`for(i=(B<2?2-B:0); i<res; ++i){`↵
↵
I think no.↵
↵
- Code should be easy to understand for all↵
↵
Hail to easy code...↵
==================