277-Find-The-Celebrity
Sat 17 May 2025
https://leetcode.com/problems/find-the-celebrity
import pyutil as pyu
pyu.get_local_pyinfo()
print(pyu.ps2("python-dotenv"))
from typing import List
# The knows API is already defined for you.
# Returns a bool, whether a knows b
# Def knows(a: int, b: int) -> bool:
class Solution:
def findCelebrity(self, n: int) -> int:
candidate …Category: leetcode
Read More