[Community Puzzle] Largest Number

Yes, I think so.
Saying “two numbers can be removed” is not accurate. It is more like “remove digits”.

Ah the same is happening for me; my algorithm with only removing zero or one digits solves all test cases, but fails validator 3. While it was said this is not an issue, it seems that at least there is imbalance between test and validator 3 (and, test 3 does not work for requiring the removal of two digits - or technically I am removing two digits, but the second digit is simply removed through int()).

This would be solved if test 3 current input number 104890600 is changed into 114890600.

Missing tags for

  • String

  • Loops

Inconsistency in the different unit tests. Unit tests need to convert to int for in game validation for the 2 digit case, but must be given as a string to pass the final validators. Maybe change the final validation test for 2 digits in order to pass when converted to int ?