From f6a0cc925ce307bfa0e2cb6223e6fe2466a8fb00 Mon Sep 17 00:00:00 2001 From: jrosendo Date: Tue, 8 Nov 2022 16:08:11 +0000 Subject: [PATCH] docs(canyoucount): fix subject --- subjects/canyoucount/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/subjects/canyoucount/README.md b/subjects/canyoucount/README.md index 53111adb..7698c084 100644 --- a/subjects/canyoucount/README.md +++ b/subjects/canyoucount/README.md @@ -2,17 +2,17 @@ ### Instructions -Your program will receive some arguments. Count how many characters they have in total and print them. If the number of arguments is not enough, print 0. +Your program will receive some arguments. Count how many characters they have in total and print them. + +- If the number of arguments is invalid it should print `0`. ### Usage ```console $ go run . "hello" "how are you?" | cat -e 17$ -$ go run . "a" | cat -e -1$ -$ go run . "I am" "myself." | cat -e -11$ +$ go run . "hi" | cat -e +2$ $ go run . | cat -e 0$ ```