How to think of an algorithm

I’m following tutorials on how to create paths created procedurally. I would like to create something simple done by me rather than copying tutorials. How are these algorithms discussed? I would not know where to leave

An algorithm is basically just a step-by-step process to solve a problem. Developing an algorithm is therefore simply breaking down a problem into simpler problems until you can’t break it down any further and then writing code for it.

1 Like

Think about what you’re going to feed into it, what you expect to come out and then step-by-step it like @Ryiah said.