From 6894cd3027af7ed6cdd2ca2999e5031ca4af876d Mon Sep 17 00:00:00 2001 From: Prathamesh Mali Date: Tue, 11 Jan 2022 11:30:01 +0530 Subject: [PATCH] fixed typo --- build-logic/005_arrays.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-logic/005_arrays.md b/build-logic/005_arrays.md index cace783..dbe0e48 100644 --- a/build-logic/005_arrays.md +++ b/build-logic/005_arrays.md @@ -12,7 +12,7 @@ - [3,5,2,9,4] = 3+5+2+9+4 = 23 - [6,2,8,1,3] = 6+2+8+1+3 = 20 - Final Output : 20+23 = 43 -6. Find number of constants and vowels in a string. +6. Find number of consonants and vowels in a string. 7. Shift an array by X to right. - Example [1,2,3,4,5] after shifting to right [5,1,2,3,4]