LeetCode in Kotlin

2273. Find Resultant Array After Removing Anagrams

Easy

You are given a 0-indexed string array words, where words[i] consists of lowercase English letters.

In one operation, select any index i such that 0 < i < words.length and words[i - 1] and words[i] are anagrams, and delete words[i] from words. Keep performing this operation as long as you can select an index that satisfies the conditions.

Return words after performing all operations. It can be shown that selecting the indices for each operation in any arbitrary order will lead to the same result.

An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase using all the original letters exactly once. For example, "dacb" is an anagram of "abdc".

Example 1:

Input: words = [“abba”,”baba”,”bbaa”,”cd”,”cd”]

Output: [“abba”,”cd”]

Explanation: One of the ways we can obtain the resultant array is by using the following operations:

We can no longer perform any operations, so [“abba”,”cd”] is the final answer.

Example 2:

Input: words = [“a”,”b”,”c”,”d”,”e”]

Output: [“a”,”b”,”c”,”d”,”e”]

Explanation: No two adjacent strings in words are anagrams of each other, so no operations are performed.

Constraints:

Solution

class Solution {
    fun removeAnagrams(words: Array<String>): List<String> {
        val result: MutableList<String> = ArrayList()
        if (words.isEmpty()) {
            return result
        }
        var uniqueWordIdx = 0
        var currIdx = 1
        result.add(words[uniqueWordIdx])
        while (currIdx < words.size) {
            if (!isAnagram(words[currIdx], words[uniqueWordIdx])) {
                uniqueWordIdx = currIdx
                result.add(words[uniqueWordIdx])
            }
            currIdx++
        }
        return result
    }

    /*
    Utility to check if the 2 words are anagrams or not
    */
    private fun isAnagram(word1: String, word2: String): Boolean {
        val charMap = IntArray(26)
        val word1Arr = word1.toCharArray()
        val word2Arr = word2.toCharArray()
        for (a in word1Arr) {
            charMap[a.code - 'a'.code]++
        }
        for (a in word2Arr) {
            charMap[a.code - 'a'.code]--
        }
        for (a in charMap) {
            if (a != 0) {
                return false
            }
        }
        return true
    }
}