Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - larryellison

Pages: [1]
1
geometry dash bloodbath
You can add a check to ensure 'xp' is not empty before calling np.argmin(). Here's how you could do it in Python:
Code: [Select]
if len(xp) > 0:
    minLineIdx = int(np.argmin(xp)/2)
else:
    # Handle the case when 'xp' is empty
    # For example, set minLineIdx to a default value or raise a specific exception

Still failing to follow instructions. It seems like some step is not correct

Pages: [1]