Skip to content

Instantly share code, notes, and snippets.

View isman17's full-sized avatar
🧨
Blinking

Isman isman17

🧨
Blinking
View GitHub Profile
@isman17
isman17 / BoyerMoore.php
Created July 16, 2022 08:25 — forked from nticaric/BoyerMoore.php
Boyer–Moore algorithm implementation in PHP
<?php
/**
* Returns the index of the first occurrence of the
* specified substring. If it's not found return -1.
*
* @param text The string to be scanned
* @param pattern The target string to search
* @return The start index of the substring
*/