I have this array and it is formatted as string:
['identifier','6.35', '2.72', '11.79', '183.25']
The first item is always 'identifier' so must be filtered out.
What I need in this example as output is:
MaxValue = 183.25
MinValue = 2.72
What would be a clean and fast way to achieve this? My arrays can contain a lot of data.