Editorial for CCC '23 J2 - Chili Peppers


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.

This problem can be solved by using a variable to accumulate the total spiciness of Ron's chili. This value can be updated for each pepper name read from the input using a loop which iterates N times. One way to perform this update in the body of the loop is to use an if statement with a test for each possible pepper name. An alternative approach is to effectively place the table given in the problem statement in memory and then use the table to look up the SHU value given the name of a pepper. Different programming languages provide different ways of storing this table.


Comments

There are no comments at the moment.