From 0ac1dcb01690d470c56acd68cbaa6d45d764f059 Mon Sep 17 00:00:00 2001 From: Pratyay Patra Date: Fri, 10 Jul 2026 09:25:03 +0530 Subject: [PATCH] Fix explanation for consecutive vowels example Updated the explanation to reflect the correct words with consecutive vowels. Signed-off-by: Pratyay Patra --- Consecutive2vowels.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Consecutive2vowels.java b/Consecutive2vowels.java index 7c48108..d6fec88 100644 --- a/Consecutive2vowels.java +++ b/Consecutive2vowels.java @@ -4,7 +4,7 @@ Input: I enjoy eating spaghetti and meatballs for dinner Output: 2 -Explanation: There are two words in the sentence that contain at least two consecutive vowels - "enjoy" and "meatballs". +Explanation: There are two words in the sentence that contain at least two consecutive vowels - "eating" and "meatballs". */ import java.util.*;