Sort by

recency

|

1724 Discussions

|

  • + 0 comments

    if name == 'main': n = int(input()) integer_list = map(int, input().split()) t = tuple(integer_list) hashed_t = hash(t)

    print(hashed_t)

  • + 0 comments

    It's a simple but effective demonstration of how Python handles data immutability and hashing. Betbook250 com Login

  • + 0 comments

    Kate, the Princess of Wales, makes first public appearance after cancer treatment

    Kate Middleton News

  • + 0 comments

    The https://ukcorteizsclothing.com/corteiz-hoodie/ Hoodie is a standout option for anyone eager to make a bold statement. Its vibrant, deep hue infuses energy into any outfit while embodying the signature edgy style of Corteiz Hoodie . Perfect for fashion enthusiasts looking to play with bold colors, this Hoodie offers a unique twist to their wardrobe.

  • + 0 comments
    if __name__ == '__main__':
        n = int(input())
        # convert the values in list to tuple
        integer_list = tuple(map(int, input().split()))
    
    
    # hash the tuple and print it
    print(hash(integer_list))