mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
davhojt
f2b943adbd
|
2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago |
README.md
Long Words
Instructions
Create three functions, which each accept an array as an argument.
-
longWords
: returnstrue
if every element of the array is astring
with at least 5 characters. -
oneLongWord
: returnstrue
if at least one element of the array is astring
with 10 or more characters. -
noLongWords
: returnstrue
if there are no elements in the array which is astring
with at least 7 characters.