Skip to content

Instantly share code, notes, and snippets.

@lyquocphong
lyquocphong / minsubstring.php
Created January 21, 2021 21:11
Minimum window substring
<?php
$str = 'abbaacdbcab';
$chars = ['a', 'b', 'c'];
echo "Expected: bca | Result: ".findMinWinSubString($str, $chars)."\n";
$str = 'xyyzyzyx';
$chars = ['x', 'y', 'z'];