fork download
  1. <?php
  2. function punyaHuruf(string $kataPertama, string $kataKedua): bool {
  3. $kataPertama = strtolower($kataPertama);
  4. $kataKedua = strtolower($kataKedua);
  5.  
  6. foreach(array_unique(str_split($kataPertama)) as $huruf) {
  7. if (strpos($kataKedua, $huruf) === false) {
  8. return false;
  9. }
  10. }
  11.  
  12. return true;
  13. }
  14. ?>
Success #stdin #stdout 0.03s 26080KB
stdin
Standard input is empty
stdout
Standard output is empty