From f5851f97e58081e270a5d73324282fbaf312d8c1 Mon Sep 17 00:00:00 2001 From: estlop Date: Wed, 29 Jun 2022 13:16:07 +0100 Subject: [PATCH] Rephrase to make clear the expected input to handle --- subjects/sum/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/sum/README.md b/subjects/sum/README.md index ce4e1991..c76a8ff0 100644 --- a/subjects/sum/README.md +++ b/subjects/sum/README.md @@ -2,7 +2,7 @@ ### 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