We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b20e5c0 commit 807e668Copy full SHA for 807e668
1 file changed
src/main/java/com/thealgorithms/searches/BoyerMoore.java
@@ -1,11 +1,11 @@
1
package com.thealgorithms.searches;
2
-
3
/**
4
* Boyer-Moore string search algorithm
5
* Efficient algorithm for substring search.
6
*
7
- * @author Pau
8
-*/
+ * @see <a href="https://en.wikipedia.org/wiki/Boyer%E2%80%93Moore_string-search_algorithm">
+ * https://en.wikipedia.org/wiki/Boyer%E2%80%93Moore_string-search_algorithm</a>
+ */
9
10
public class BoyerMoore {
11
0 commit comments