Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

all subarrays of an array python

import itertools

def allSubArrays(xs):
    n = len(xs)
    indices = list(range(n+1))
    for i,j in itertools.combinations(indices,2):
        yield xs[i:j]
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #subarrays #array #python
ADD COMMENT
Topic
Name
1+3 =