▲ | n4r9 8 days ago | |
I guess it depends what mean by "elegant". For me, an elegant solution makes it obvious that certain classes of bugs will not be present. For example, suppose you have an application that connects to 17 queues and processes a different type of request from each. You could do this in lots of lines as follows:
Or you could do this:
The former - despite being "warts and all" - is more prone to bugs getting missed in development and review. |