Related Coding / DSA
Count Contiguous Runs Summing to a Target
Given a sequence of integers (possibly negative) and a target sum, count how many contiguous subarrays sum exactly to the target.
Given a list of lowercase words, group together the words that share the exact same multiset of letters.
You are given a list of lowercase words. Group together words that are rearrangements of each other's letters, and return the groups.
Work in the provided coding workspace while explaining your decisions to the live interviewer. Validation may use inline tests, examples, comments, or a verbal walkthrough.
Practice this problem in the live coding workspace while the interviewer probes your clarification, implementation, trade-offs, and validation.
Continue to DashboardContinue preparing
Related Coding / DSA
Given a sequence of integers (possibly negative) and a target sum, count how many contiguous subarrays sum exactly to the target.
Related Coding / DSA
Given a sequence of integers and a target value, return the positions of two distinct entries whose values add to the target.
Related Coding / DSA
Given a string, find the length of the longest contiguous substring in which no character repeats.
Related Coding / DSA
Given a sequence of integers, find the length of the longest subsequence (not necessarily contiguous) whose elements are strictly increasing.