finlab-python / finlab_crypto

Documentation
https://finlab-python.github.io/finlab_crypto/index.html
GNU General Public License v3.0
267 stars 98 forks source link

Use set for membership testing instead of list #2

Closed jrycw closed 3 years ago

jrycw commented 3 years ago

Using set for membership testing is much faster than using list. One can check this video for detailed comparison.

koreal6803 commented 3 years ago

Thanks for the improvement.