0 out of 68 challenges solved
def classify_number(number): """ Classifies the given number as positive, negative, or zero. Args: number (int): The input number. Returns: str: A string indicating the classification of the number. """ # TODO: Implement the classify_number function pass