Hi!
In one of the blogs written by c1729, I found it is mentioned: PyPy 2 also has features not present in PyPy 3 such as random, and numpypy.
I tried importing NumPyPy in my code for Python2, and ran it using PyPy2. 243793882 But, it is giving runtime error on test 1. Can somebody please correct me where am I going wrong?
Thanks!
Edit: The blog I am talking of: https://codeforces.net/blog/entry/63102
Auto comment: topic has been updated by spoily_frog (previous revision, new revision, compare).
Try
import _numpypy
instead.Source: https://doc.pypy.org/en/latest/faq.html#what-about-numpy-numpypy-micronumpy
Thanks a lot! It worked :)