what are the 7 ways to solve a problem and how to generalize them in programming of python??
Answers
Answered by
1
Answer:
1. Read the problem at least three times (or however many makes you feel comfortable)
You can’t solve a problem you don’t understand
2. Work through the problem manually with at least three sets of sample data
3. Simplify and optimize your steps
4. Write pseudocode
5. Translate pseudocode into code and debug
6. Simplify and optimize your code
7. Debug
I hope you like this answer
Similar questions