Is there a way to extract arrays of an array by their row length?
Imagine having an array like this:
[['A','B','C'],['D','E'],['F','G','H']]
How can I extract the rows with a length of three, resulting in:
[['A','B','C'],['F','G','H']]
This is just one instance, but I have a massive dataset requiring filtering based on row lengths.