标签: python python-3.x memory set
这是我的代码
import numpy as np set_ = set() n = int(input()) while n > 0: set_.add(hash(input())) n -= 1
有没有简单的方法可以使该设置两次或更多次消耗更少的内存?