Rephrase to make clear the expected input to handle

This commit is contained in:
estlop 2022-06-29 13:16:07 +01:00 committed by Dav Hojt
parent 2dc5d68381
commit 5ebf4a257a
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
### Instructions ### Instructions
Write a function that takes two single digit numbers as a string and returns the sum as an int. If one of the arguments is not a single digit number, return 0. Write a function that takes two single digit numbers as a string and returns the sum as an int. If the number of digits from one of the arguments is more than one, return 0.
### Expected function ### Expected function