diff --git a/Hackerrank/Python/Tuples.py b/Hackerrank/Python/Tuples.py new file mode 100644 index 0000000..fe62803 --- /dev/null +++ b/Hackerrank/Python/Tuples.py @@ -0,0 +1,6 @@ +n = int(input()) +integer_list = map(int, input().split()) +tup=tuple(integer_list) +print(hash(tup)) + +