Given N and L, return a list of numbers (in ascending order) that divides the interval [-L L] into N equal-length segments.
For example, if L = 3 and N = 2
y = [ -3 0 3 ]
y = linspace(-L,L,(N+1))
why this is not working even though it meets all the requirements in the assert?
y = linspace(-L,L,N)
It strangely does not work