Skip to content

Commit

Permalink
[LeetCode] Add day's 8 challenge.
Browse files Browse the repository at this point in the history
  • Loading branch information
pin3da authored Jan 8, 2021
1 parent 0d7d0a6 commit 7964273
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions solved/LeetCode/Challenges/2020/January/08.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class Solution {
fun arrayStringsAreEqual(a: Array<String>, b: Array<String>): Boolean {
return a.joinToString(separator="") == b.joinToString(separator="")
}
}

0 comments on commit 7964273

Please sign in to comment.