Constó de una evaluación en línea y una entrevista técnica, en la cual programé en tiempo real enfrente de mi entrevistadora, la entrevista se llevó a cabo completamente en inglés.
Interview questions [1]
Question 1
Experiencias de trabajo donde haya aplicado los principios de liderazgo de Amazon.
OA assessment of 70 mins 2 medium - hard level questions
then company values and behavoiral assessment, situational based assessment.
Then assessment based on Amazon Leadership Principles.
It was moderate to easy and ther are about 11-12 test cases , the questions are mostly from array, stack, queue, and medium level concepts are asked
I recently appeared for an online assessment test focused on Data Structures and Algorithms (DSA) hosted on the HackerRank platform. The test had a total duration of 110 minutes, during which I was required to solve two challenging DSA problems. Each question was designed to assess my problem-solving skills, understanding of core DSA concepts, and ability to implement efficient algorithms under time constraints. The problems required careful analysis, code optimization, and rigorous testing.
Interview questions [1]
Question 1
1st problem
Problem Statement
You are given an array sequenceData of n positive integers. You may perform the following operation any number of times (including zero):
Choose a prefix of length s (1 ≤ s ≤ n) that contains no zeros.
Subtract 1 from each element in that prefix.
After performing operations in any order, determine the maximum number of zeros that can appear in the array.
2nd problem
You are given two strings:
sourceString: the original string in which you need to search.
pattern: a simplified regex-like pattern that contains exactly one asterisk '*'. The '*' can match any (possibly empty) substring of sourceString.
Your task is to find the length of the longest possible substring in sourceString that:
Starts with the prefix before the '*' in pattern, and
Ends with the suffix after the '*' in pattern,
And the prefix and suffix do not overlap unless the '*' can represent the in-between part (or nothing at all).
If no such match exists, return -1.