79475501

Date: 2025-02-28 12:28:11
Score: 3
Natty:
Report link

Thanks to @jared

import numpy as np

# This line is given
pa = np.array([[ 213.00002 , 213.00002 ],[ -213.00002 , 213.00002 ],[ 213.00002 , -213.00002 ],[ -213.00002 , -213.00002 ]])
# This line is given

pa -= pa.min(0)


# RESULT 
# [[426.00004, 426.00004], [  0, 426.00004], [426.00004, 0 ], [  0, 0 ]]
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @jared
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Paul St George