码迷,mamicode.com
首页 > 其他好文 > 详细

680. Valid Palindrome II

时间:2020-07-10 09:29:42      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:ase   turn   esc   color   other   word   let   HERE   opera   

package LeetCode_680

/**
 * 680. Valid Palindrome II
 * https://leetcode.com/problems/delete-operation-for-two-strings/description/
 *
 * Given two words word1 and word2, find the minimum number of steps required to make word1 and word2 the same, where in each step you can delete one character in either string.

Input: "sea", "eat"
Output: 2
Explanation: You need one step to make "sea" to "ea" and another step to make "eat" to "ea".

Note:
The length of given words won‘t exceed 500.
Characters in given words can only be lower-case letters.
 * */
class Solution {
    fun validPalindrome(s: String): Boolean {
        var l = -1
        var r = s.length
        while (l++ < r--){
            if (s[l]!=s[r]){
                return isPalindrome(s,l+1,r) || isPalindrome(s,l,r-1)
            }
        }
        return true
    }

    private fun isPalindrome(str: String, l_: Int, r_: Int): Boolean {
        var l = l_
        var r = r_
        while (l < r) {
            if (str[l] != str[r]) {
                return false
            }
            l++
            r--
        }
        return true
    }
}

 

680. Valid Palindrome II

标签:ase   turn   esc   color   other   word   let   HERE   opera   

原文地址:https://www.cnblogs.com/johnnyzhao/p/13277323.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!