@vpavlenko As I have been working the problems, I am noticing a variety of ways to structure the problem statements. I think it might be beneficial to create a simple standard that is followed, and then every update should approach the standard. One possible start:
Consistent order:
- Given (use
input())
- Goal/objective for the code
- Output (use
print())
- Restrictions/Don't use
Use of Math structures:
- Favor the problem written in simple English phrases.
- Mark declared variables as math symbols
- Use mathematics expressions when the English will be complicated or confusing or really long.
What do you think?