LeetCode in Kotlin

2744. Find Maximum Number of String Pairs

Easy

You are given a 0-indexed array words consisting of distinct strings.

The string words[i] can be paired with the string words[j] if:

Return the maximum number of pairs that can be formed from the array words.

Note that each string can belong in at most one pair.

Example 1:

Input: words = [“cd”,”ac”,”dc”,”ca”,”zz”]

Output: 2

Explanation: In this example, we can form 2 pair of strings in the following way:

It can be proven that 2 is the maximum number of pairs that can be formed.

Example 2:

Input: words = [“ab”,”ba”,”cc”]

Output: 1

Explanation: In this example, we can form 1 pair of strings in the following way:

It can be proven that 1 is the maximum number of pairs that can be formed.

Example 3:

Input: words = [“aa”,”ab”]

Output: 0

Explanation: In this example, we are unable to form any pair of strings.

Constraints:

Solution

class Solution {
    fun maximumNumberOfStringPairs(words: Array<String>): Int {
        val set: MutableSet<String> = HashSet()
        var cnt = 0
        for (s in words) {
            val sb = StringBuilder(s).reverse()
            if (set.contains(sb.toString())) {
                cnt++
            } else {
                set.add(s)
            }
        }
        return cnt
    }
}