BaseBall Game (Turing practice quiz test) #turing #javascript #quiz #reactjs #quiz

preview_player
Показать описание
### BaseBall Game

You are keeping score for a baseball game with strange rules. The game consists of several rounds, where the score
of pass rounds may affect future rounds score.

At the beginning of the code, you start with an empty record. You are given a list of strings "ops", where ops[i] is the
ith operation you must apply to the record and is one of the following:

1. Add integer "x"- Record a new score of "x".
2. "+" Record a new score that is the sum of the previous two scores. It is guaranteed there will always be two previous scores.
3. "D" Record a new score that is double the previous score. It is guaranteed there will always be previous score.
4. "C" Invalidate the previous score, removing it from the record. It is guaranteed there is always be previous score.
Рекомендации по теме
Комментарии
Автор

Thanks Man for sharing the solution, But it would be better if you explain code with voice, instead of comments

AbdullahAbdullah-hz