From 5ebf4a257a6d3f60cf24dd4f88c944bd1937a50c 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 ce4e1991f..c76a8ff0a 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