xAI software engineer interviews cover algorithms, data structures, system design, and coding problems drawn from real interview rounds.
n environmental sensors labeled 0 to n - 1. Each sensor is either functioning correctly or corrupted, but you do...Input: Listnums, return the maximum sum of non-adjacent elements. Specifically, if you choose an element, you cannot choose the elements immediately before or after it. def max_sum_non_adjacent(nums: List[int]) -> int: nums = [2, 4, 6, 2, 5] 13 nums = [1, 2, 3, 1] 4 1 <= len(nums) <= 100 0 <= nums[i] <= 400 Tokenizer class that allows you to add words and tokenize sentences into a list of words. The tokenizer should be able to handle spaces and punctuation correctly. The key methods should utilize a trie data structure, which enables efficient storage and retrieval of words. class Tokenizer: def add_word(self, word: str) -> None: def tokenize(self, sentence: str) -> List[str]: tokenizer = Tokenizer() tokenizer.add_word("hello") tokenizer.add_word("world") output = tokenizer.tokenize("hello world!") ['hello', 'world'] tokenizer.tokenize("xAI is amazing.") ['xAI', 'is', 'amazing'] KthLargest that keeps track of the kth largest element in a dynamically updating stream of integers. The class should support the method add(int val), which adds an integer to the stream and returns the current kth largest element.class KthLargest:def __init__(self, k: int, nums: List[int]) -> None:def add(self, val: int) -> int: k = 3, nums = [4, 5, 8, 2] KthLargest kthLargest = KthLargest(k, nums) kthLargest.add(3) 4 3, the third largest number is 4. Example 2: kthLargest.add(5) 5 5. Constraints: 1 <= k <= 104 0 <= nums.length <= 104 -104 <= nums[i] <= 104 -104 <= val <= 104 104 calls will be made to add. None) in an input list of integers. The function should return the indices of the None values in ascending order.def find_missing_indices(data: List[Optional[int]]) -> List[int]: find_missing_indices([1, None, 3, None, 5]) [1, 3] find_missing_indices([None, None, 2, 4]) [0, 1] data will have at most 10^4 elements. None. def shortest_path(graph: List[List[int]], start: int, end: int) -> int:graph = [[1, 2], [0, 2, 3], [0, 1], [1]], start = 0, end = 3 2 graph = [[1], [0, 2], [1, 3], [2]], start = 0, end = 3 3 1 <= graph.length <= 1000 0 <= start, end < graph.length 0 <= graph[i].length <= 1000UserSessionManager class is critical for xAI to handle user sessions securely and efficiently. It requires proper management of user logins, session timeouts, and session validation to ensure a consistent user experience across devices.login(user_id: str) -> str: Logs in a user and returns the session ID.logout(session_id: str) -> None: Logs out a user by invalidating their session ID.is_valid_session(session_id: str) -> bool: Checks if the session ID is valid.get_session_data(session_id: str) -> dict: Retrieves the session data associated with a session ID.4. Example 1:login('user123') → Output: session_id_abcuser123 successfully logs in and receives a session ID.5. Constraints:Sign up for free to access walkthroughs, AI-generated questions, and more.
Get Started Free