HackerRank-Python攻城歷程-1.Tuples

Solution:

1 if __name__ == '__main__':
2     n = int(input())
3     integer_list = map(int, input().split())
4     t=tuple(integer_list)
5     print(hash(t))

 

posted @ 2017-09-26 09:57  RiocasTure  阅读(288)  评论(0编辑  收藏  举报