Efficient coding (individual objects versus groups,...)

I recently wondered if there are any efficient coding recipes? For example if I have the same condition/expression applied to 3 different objects - which would be more efficient:

  1. Apply the condition/expression to the group (grouped 3 objects)
    or
  2. keep the condition/expression attached to each of the 3 individual objects?

Is there any advantage to either way (memory-wise, file size, speed of execution,…)?
Thanks in advance!

Hi. Definitely first approach.
Less code = quicker loading WFF loading times / more efficient watch face.

Tomas

Hi Tomas - thanks for the input - much appreciated…