From 1a3f9ae1fbf88cb27bcb98af21926fdfe7f4d4f8 Mon Sep 17 00:00:00 2001 From: zainabdnaya Date: Wed, 15 Jun 2022 15:50:55 +0100 Subject: [PATCH] Correcting number of digits --- subjects/numofdigits/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/numofdigits/README.md b/subjects/numofdigits/README.md index eeb390df..d2a2d58e 100644 --- a/subjects/numofdigits/README.md +++ b/subjects/numofdigits/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that returns a number of digits in a nonnegative integer n. +Write a function that returns the number of digits in a nonnegative integer n. - if you enter a negative input return 0. ### Expected function