Write your program with a messy code first, then refactor it

You have a big problem in your head. It's impossible to solve it with a clean code without first writing your messy code. After the program works. Refactoring each block of code become easy because you know what every code does.

But starting solving a problem with clean code leads to other problems. Solving the problem is another problem. When you try to solve this in parallel it will make the problem worse.

My advice is that it’s okay to write messy code to solve a problem. You always have an opportunity to refactor it later.

By the way, this is the professional way to do it.