I've list of timestamp values stored in a nested list below.
[[1462692695.0, 1462857370.0, 1463297496.0],
[1466695088.0, 1466933174.0, 1467067583.0, 1467252502.0, 1467253381.0],
[1455009108.0, 1455218354.0, 1455221295.0],
[1456098479.0, 1456242604.0, 1456277812.0, 1456683177.0]]
And I want to find the difference between second and first, third and second and so on.. for each of the nested list values.
For example: The newly created difference list:
[[164675,440126],
[...,...,...,...],
....]