Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Ghost Detect by boojum
def recognize(signal: int) -> bool:
l = bin(signal)[2:].split("0")
return any([l.count(x) == 3 for x in l if x])
May 26, 2025
Comments: