79349883

Date: 2025-01-12 12:30:30
Score: 2.5
Natty:
Report link

This is the simplest solution that I could think of:

import matplotlib.pyplot as plt

import numpy as np

x = [np.linspace(-100, 100)]

y = item**2 for item in x

plt.plot(x,y)

plt.show()

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: a coding guy