mirror of
https://github.com/TheAlgorithms/Java.git
synced 2026-03-13 08:40:43 +08:00
style: enable MethodName in CheckStyle (#5182)
enabled: MethodName in CheckStyle
This commit is contained in:
committed by
GitHub
parent
ea4dc15a24
commit
295e7436b1
@@ -2,7 +2,7 @@ package com.thealgorithms.searches;
|
||||
|
||||
class KMPSearch {
|
||||
|
||||
int KMPSearch(String pat, String txt) {
|
||||
int kmpSearch(String pat, String txt) {
|
||||
int M = pat.length();
|
||||
int N = txt.length();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user