![]() |
VOOZH | about |
I applied for this codeathon through Hackerearth platform. It was a hiring codeathon for Software developer and data analyst role. I gave SDE test.
Round 1(Coding and Aptitude Round): There were 10 MCQs and 2 programming questions. The MCQs were simple and based on topics like probability, english grammar, sequences, etc.
The programming questions were easy-medium level.
Testcase A= 234569 B=56 Ans = 2 (29 and 56 can be formed from A)
e.g.
HARRY
( represented as
{'H', 'A', 'R', 'Y'})
and
HARI
(represented as
{'H', 'A', 'R', 'I'})
Either string has one missing letter
e.g
LATA
(represented as
{'L', 'A', 'T'})
and
LALA
(represented as
{'L', 'A'})
Test case
arr = [HARI, HARRY, LATA, SARAH, LALA] connected component 1 = [HARI, HARRY, SARAH] connected component 2 = [LALA, LATA] Ans: max length = 3 and min components required = 2