Domanda di colloquio di TORC Robotics

1) Find loop in Linked list

Risposta di colloquio

Anonimo

10 feb 2020

You can use an hashmap to store each pointer as you move through. Although a better approach would be use the hare and tortoise algorithm since that gives O(N) time complexity and O(1) space complexity.