Update LongestPalindromicSubstring - Remove ; (#2905)

Removing unnecessary semi-colon ';'

Co-authored-by: Yang Libin <szuyanglb@outlook.com>
This commit is contained in:
Kabir 2022-01-13 07:29:11 +05:30 committed by GitHub
parent ab9f74c2ee
commit 76fbe7c9e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,8 +3,6 @@ package com.thealgorithms.strings;
// Longest Palindromic Substring
import java.util.Scanner;
;
class LongestPalindromicSubstring {
public static void main(String[] args) {