Sprinklr
Details
Job Status
Full Time (Employment + Internship Mandatory)
Criteria
| Study | Cutoff |
|---|---|
| X | % |
| XII | % |
| UG | 6 GPA |
Round 1
02/09/23
- MCQ (72) - Technical, Aptitude
- Coding (2)
Coding Questions
- Smallest Common Substring: Given two strings, find the number of mappings of the common substrings between the two stirngs.
Don’t have to consider subtrings, since they’re asking for smallest, it just becomes the individual characters. Create a charCount for both and multiply and add the count for each character.
- Substrings ending with same characters: Given a string, and p ranges (S[1..2] or S[1..6]). Find the number of substring in the ranges such that the end characters are the same.