mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
go: add ‹package› to satisfy ‹gofmt›
Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
parent
18017bce64
commit
ffef9f6188
1 changed files with 2 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
package palindromic_substrings
|
||||||
|
|
||||||
func checkSubstring(s string, i, j int) int {
|
func checkSubstring(s string, i, j int) int {
|
||||||
if i < 0 || j >= len(s) {
|
if i < 0 || j >= len(s) {
|
||||||
return 0
|
return 0
|
||||||
|
|
Loading…
Reference in a new issue