LeetCode 760 Find Anagram Mappings

LeetCode 760 Find Anagram Mappings Problem

Download Code
class Solution(object):
    def anagramMappings(self, A, B):
        """
        :type A: List[int]
        :type B: List[int]
        :rtype: List[int]
        """
        val_index = {}
        ans = []
        for i, n in enumerate(B):
            val_index[n] = i
        for n in A:
            ans.append(val_index[n])
        return ans
Download Find Anagram Mappings.py

List of all Find Anagram Mappings problems

Leetcode 760 Find Anagram Mappings problem solution in python3 with explanation. This is the best place to expand your knowledge and get prepared for your next interview.

Feedback is the most important part of any website.

If you have any query, suggestion or feedback, Please feel free to contact us.