Make It Correct, Clear, Concise, and Fast: The Essential Order for Programming Excellence

When it comes to programming, one of the most critical factors that separates good engineers from great ones is their process. While there's an emphasis on writing code that is efficient, performance should never be your starting point. Here's why the best order is to make it correct, make it clear, make it concise, and only then, make it fast.

1. Make It Correct

First and foremost, your code must function correctly. It's easy to get caught up in optimization and clean design, but none of that matters if your code doesn't solve the problem it was designed to address.

Think of correctness as the foundation upon which everything else is built. If your foundation is weak, no amount of refinement or performance tuning will save you in the long run. Test your code thoroughly. Write unit tests, verify edge cases, and ensure that the software meets its requirements. Optimization can come later; for now, correctness is your top priority.

Example: Imagine writing a sorting algorithm. You can focus on clever ways to make it faster, but if it doesn't sort correctly every time, all that work is wasted.

2. Make It Clear

Once you've ensured correctness, the next step is to make your code easy to understand. Code isn't just for computers; it's also for humans. You, your colleagues, or future maintainers will eventually revisit this code, and clarity is key to reducing bugs, improving collaboration, and making updates less painful.

Readable code includes:

  • Using meaningful variable names.
  • Following consistent formatting.
  • Adding comments where necessary, but not over-commenting.
  • Structuring logic in a way that flows naturally.

Well-written code is like a well-written essay. If someone can quickly grasp what the code is doing without needing to reverse-engineer it, you've achieved clarity.

Example: If you're creating a complex calculation, break it into clear steps with well-named helper functions or variables. This makes the logic transparent without needing to decode cryptic variable names like x1, y2, or overly clever one-liners.

3. Make It Concise

Conciseness comes after clarity because brevity should never come at the expense of readability. However, after ensuring your code is correct and easy to follow, it's time to trim any unnecessary verbosity.

Eliminate redundant code, use built-in functions where applicable, and avoid over-complicating solutions. The goal is to reduce cognitive load without sacrificing clarity. Concise code is not necessarily short code; it's code that expresses its intent with precision and without waste.

Example: If you find yourself repeating the same block of code multiple times, consider refactoring it into a reusable function. This reduces code duplication and makes future changes easier.

4. Make It Fast

Finally, once your code is correct, clear, and concise, you can focus on performance. This is where profiling and optimization techniques come into play. But be cautious - premature optimization can lead to complex, brittle code that is difficult to maintain and may even introduce new bugs.

When optimizing for speed, always ensure that the changes you make don't compromise the previous steps. Test your optimizations thoroughly to ensure they genuinely improve performance without sacrificing correctness or readability.

Focus on optimizing bottlenecks, not every line of code. Often, 80% of performance gains come from optimizing a small portion of the codebase. Tools like profilers can help you identify where your efforts will have the greatest impact.

Example: If you're optimizing a search algorithm, focus on improving the areas where performance drops as data size scales. Instead of micro-optimizing loops early in the process, target the places where performance truly matters.

Conclusion: Why This Order Matters

The order of these principles isn't arbitrary; it's deliberate and crucial. Jumping straight to speed before ensuring correctness can lead to disastrous consequences, including hidden bugs and unmaintainable code. Similarly, unclear or verbose code, while functional, leads to technical debt that will slow your team down over time.

By following this sequence - correctness first, then clarity, then conciseness, and finally speed - you ensure that your code remains robust, understandable, maintainable, and performant. It's a proven, methodical approach to writing software that will stand the test of time.

In programming, as in life, you can't rush quality.

Wei-Ming Thor

I create practical guides on Software Engineering, Data Science, and Machine Learning.

Creator of ApX Machine Learning Platform

Background

Full-stack engineer who builds web and mobile apps. Now, exploring Machine Learning and Data Engineering. Read more

Writing unmaintainable code since 2010.

Skill/languages

Best: JavaScript, Python
Others: Android, iOS, C, React Native, Ruby, PHP

Work

Engineering Manager

Location

Kuala Lumpur, Malaysia

Open Source
Support

Turn coffee into coding guides. Buy me coffee