![JAR search and dependency download from the Maven repository](/logo.png)
g0501_0600.s0522_longest_uncommon_subsequence_ii.Solution.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-kotlin Show documentation
Show all versions of leetcode-in-kotlin Show documentation
Kotlin-based LeetCode algorithm problem solutions, regularly updated
package g0501_0600.s0522_longest_uncommon_subsequence_ii
// #Medium #Array #String #Hash_Table #Sorting #Two_Pointers
// #2023_01_14_Time_163_ms_(100.00%)_Space_33.6_MB_(50.00%)
class Solution {
fun findLUSlength(strs: Array): Int {
var maxUncommonLen = -1
for (indx1 in strs.indices) {
var isCommon = false
for (indx2 in strs.indices) {
if (indx2 != indx1 && isSubSequence(strs[indx1], strs[indx2])) {
isCommon = true
break
}
}
if (!isCommon) {
maxUncommonLen = Math.max(maxUncommonLen, strs[indx1].length)
}
}
return maxUncommonLen
}
private fun isSubSequence(str1: String, str2: String): Boolean {
var indx1 = 0
for (indx2 in 0 until str2.length) {
if (str1[indx1] == str2[indx2]) {
indx1++
}
if (indx1 == str1.length) {
return true
}
}
return indx1 == str1.length
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy