CodeNewbie Community 🌱

Cover image for When is it right to make code less efficient?
Best Codes
Best Codes

Posted on

When is it right to make code less efficient?

Hello fellow programmers!

Today, I made my first post that is solely a discussion. In fact, you are reading it right now!

So, I pose this question to you: When is it right to make code less efficient?

(e.g.

repeat 4 times {
action
}
Enter fullscreen mode Exit fullscreen mode

v.s.

action
action
action
action
Enter fullscreen mode Exit fullscreen mode

)

Post your opinion in the comments below. Thanks for reading!

Top comments (0)