Ho presentato la mia candidatura online. La procedura ha richiesto 2 giorni. Ho sostenuto un colloquio presso LimeChat (Gurgaon, Haryana) nel mese di gen 2024
Colloquio
There were two rounds of interview. Bith rounds were technical rounds. The first round being a very detailed technical round while the second round was a mix of tech and HR
Ho presentato la mia candidatura online. Ho sostenuto un colloquio presso LimeChat (Bengaluru) nel mese di set 2025
Colloquio
Short HR call to understand background, tech stack, and interest in LimeChat. Technical Round 1 (Python Snippets): Given small Python code snippets to analyze, explain functionality, execute, and debug .Questions on designing and consuming REST APIs (methods, status codes, authentication basics).
Domande di colloquio [1]
Domanda 1
Q1: Implement a function deduplicate_users(users) that removes duplicates from a list of user emails.
Emails may vary in case (e.g., "Alice@example.com" and "alice@example.com" should be treated as duplicates).
Return a list of unique emails in lowercase.
"""
"""
Q2: What is the output of this code? Why?
"""
def append_to(element, to=[]):
to.append(element)
return to
# print(append_to(1)) # ?
# print(append_to(2)) # ?
"""
Q3: Write a function safe_get(d: dict, key: str) that safely returns a key's value or 'N/A' if the key is missing.
Also ensure d is actually a dict.
"""