Leetcode 760. Find Anagram Mappings Type: Array Approach: Use a map to store value and index in the second array. Complexity: Time: O(n) Space: O(n)