Skip to content

Commit ab6a152

Browse files
refactor 680
1 parent f97b923 commit ab6a152

File tree

1 file changed

+0
-18
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-18
lines changed

src/main/java/com/fishercoder/solutions/_680.java

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,5 @@
11
package com.fishercoder.solutions;
22

3-
/**
4-
* 680. Valid Palindrome II
5-
*
6-
* Given a non-empty string s, you may delete at most one character. Judge whether you can make it a palindrome.
7-
8-
Example 1:
9-
Input: "aba"
10-
Output: True
11-
12-
Example 2:
13-
Input: "abca"
14-
Output: True
15-
Explanation: You could delete the character 'c'.
16-
17-
Note:
18-
The string will only contain lowercase characters a-z. The maximum length of the string is 50000.
19-
20-
*/
213
public class _680 {
224
public static class Solution1 {
235
public boolean validPalindrome(String s) {

0 commit comments

Comments
 (0)