Java Hyd Team
746 subscribers
986 photos
39 videos
670 files
690 links
https://teamhydteam.my.canva.site/

Can visit us on our website 😊
Still working on it 😊
Download Telegram
N some questions done with normal brute code
This media is not supported in your browser
VIEW IN TELEGRAM
Do please send your resumes as possibly from tomorrow i will get some updates from organisations
Words that contain many consecutive consonants, like "schtschurowskia", are generally considered somewhat hard to pronounce.

We say that a word is hard to pronounce if it contains 44 or more consonants in a row; otherwise it is easy to pronounce. For example, "apple" and "polish" are easy to pronounce, but "schtschurowskia" is hard to pronounce.

You are given a string SS consisting of NN lowercase Latin characters. Determine whether it is easy to pronounce or not based on the rule above β€” print YES if it is easy to pronounce and NO otherwise.

For the purposes of this problem, the vowels are the characters \{a, e, i, o, u\}{a,e,i,o,u} and the consonants are the other 2121 characters.

Input Format
The first line of input will contain a single integer TT, denoting the number of test cases.
Each test case consists of two lines of input.
The first line of each test case contains a single integer NN, the length of string SS.
The second line of each test case contains the string SS.
Output Format
For each test case, output on a new line the answer β€” YES if SS is easy to pronounce, and NO otherwise.

Each character of the output may be printed in either uppercase or lowercase. For example, the strings YES, yeS, yes, and YeS will all be treated as identical.

Constraints
1 \leq T \leq 1001≀T≀100
1 \leq N \leq 1001≀N≀100
SS contains only lowercase Latin characters, i.e, the characters \{a, b, c, \ldots, z\}{a,b,c,…,z}
Sample 1:
Input
Output
5
5
apple
15
schtschurowskia
6
polish
5
tryst
3
cry
YES
NO
YES
NO
YES
Explanation:
Test case 11: "\text{apple}apple" doesn't have 44 or move consecutive consonants, which makes it easy to pronounce.

Test case 22: "\text{\textcolor{red}{schtsch}urowskia}schtschurowskia" has 77 consecutive consonants, which makes it hard to pronounce.

Test case 33: \text{polish}polish doesn't contain 44 or more consecutive consonants, so it's easy to pronounce.

Test case 44: \text{\textcolor{red}{tryst}}tryst contains 55 consecutive consonants, making it hard to pronounce.

Test case 55: \text{cry}cry doesn't contain any vowels, but its length is less than 44 so it's still easy to pronounce.
Java Hyd Team
https://www.youtube.com/live/0-3u-LLXN-M?feature=share
Great session atleast you guy's got 96 questions rest i didn't did live as got some error while streaming
But next Wednesday get ready again πŸ˜‰
3 hrs competitive coding
Let's see how fast i am ☺️ to beat the heat
Message us @stockkida for more
Send your resumes here they have openings for freshers FullStack java, React-Js mern developer
❀️
Hope you all enjoyed sankranti now it's time to get back to work πŸ‘»πŸ‘»
React JS Developers

Node JS Developers

Java Developers

MERN Stack Developers

Flutter Developers

Business Analyst

QA Engineers


New opportunities available for above mentioned positions
Learn about the master plan behind designing πŸ₯˜food delivery applications, which is absolutely FREE πŸ’―!!!

Nikhil (SDE, Ex-Amazon) is hosting a Masterclass on System Design for Food Delivery Applications. In this Masterclass, he’ll delve into the delicious details of how apps like Swiggy and Zomato manage to bring your favourite meals straight to your door.

πŸ“The webinar is on 21st Jan between 5 to 8 PM.

🟣Link- https://course.learnbay.co/event/HLD-of-Food-Delivery-App?utm_source=linkedin&utm_medium=influencer_marketing&utm_campaign=hld_food_delivery_app&utm_term=atul_kumar

This is your chance to scale up your system design knowledge. So, don't miss out!
System.out.println("Result: " + 2 + 3 + 5);System.out.println("Result: " + 2 + 3 * 5);
Anonymous Quiz
16%
A. Result: 10Result: 30
26%
B. Result: 10Result: 25
23%
C. Result: 235Result: 215
6%
D. Result: 215Result: 215
29%
E. Compilation fails