Daily LeetCode Challenge - 1662. Check If Two String Arrays are Equivalent

Min Young Kim·2022년 10월 25일
0

algorithm

목록 보기
15/198

Problem From.
https://leetcode.com/problems/check-if-two-string-arrays-are-equivalent/

오늘 문제는 아주 간단했는데, 두개의 String array 에서 각각의 원소를 모두 더했을때, 둘 다 같은 결과가 나오면 true 다르면 false 를 반환하는 문제였다.

reduce 함수를 써서 array 안의 원소를 쉽게 더할 수 있었다.

class Solution {
    fun arrayStringsAreEqual(word1: Array<String>, word2: Array<String>): Boolean {
        
        val word1Sum = word1.reduce { total, next -> total + next }
        val word2Sum = word2.reduce { total, next -> total + next }
        
        return word1Sum == word2Sum
    }
}
profile
길을 찾는 개발자

0개의 댓글