Software Engineer · Senior-Level · Phone Screen
The coding question I got was: ``` class IPv4Iterator: def __init__(self, startIp): # Initializes the iterator with the startIp. # The first address yielded by the iterator must be exactly startIp. pass def hasNext(self): # Returns true if there is at least on...