0 out of 68 challenges solved

Classify the given number

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