I have a list with several sublists containing either strings or integers. I'd like to delete all lists with strings.
The following list:
list = {{1, 2, 3, 4}, {2, 4, 5, 6, 6, 7}, {1, 23}, {"SomeString"}} should become:
{{1, 2, 3, 4}, {2, 4, 5, 6, 6, 7}, {1, 23}}