solutions: 58A

This commit is contained in:
Muhammad Nauman Raza 2025-01-14 10:24:54 +00:00
parent 5c28a40d91
commit 7b1161ad9a
Signed by: devraza
GPG key ID: 91EAD6081011574B

10
solutions/58A.py Normal file
View file

@ -0,0 +1,10 @@
import re
s = input()
matches = re.findall(r"[a-z]*h[a-z]*e[a-z]*l[a-z]*l[a-z]*o", s)
if len(matches) >= 1:
print("YES")
else:
print("NO")