you are viewing a single comment's thread
view the rest of the comments
[–] 15 points 2 years ago* (last edited 2 years ago) (1 child)

Sometimes is it worth to rethink the problem. Especially when your condition is based on set-members. Using quantor logic often simplifies the condition :

return 
    any(x for x in X if x==condition_a) 
    or all(y for y in Y if y==condition_b) 
    and all(x for x in X if x==condition_c)

I am not sure if JS has something similar, but this often helps by a lot

  • source
  • hideshow 1 child comment
  • [–] 4 points 2 years ago

    I am not sure if JS has something similar, but this often helps by a lot

    It does, the some/every array methods would achieve the same results. I use them quite often myself!

  • source
  • parent