
Robert K. answered 06/06/20
Computer Science Master's Student
Hello there.
Okay, it sounds like they want to you think about how a program, and more specifically, how an algorithm operates at a conceptual level. So, try thinking about it conceptually! Ask yourself simple question to get the process started: why 12 numbers? (Clearly, it's the months, lol, but it'll get you thinking.) How would I store 12 numbers to interact with? (An array.) Once you've locked down some of those initial questions about the input data. Start thinking about the processes that will manipulate that data. Will I need a loop? Any if statements? And build out from there. That'll start giving you ideas. It's important that an algorithm is like a recipe. Just translate the answers to your questions into steps! The next step will ONLY happen ask the previous one. Use this fact to help you mentally stay untangled in the logic.
If you have any other questions, I look forward to helping further! : ) Good luck!