All Questions
Tagged with arraypython-3.x
2 questions
12votes
1answer
2kviews
Flatten an array of integers in Python
The goal is to flatten an array of nested arrays of integers. For example [1, [2], [3, [4]]] should return [1, 2, 3, 4] I'm ...
4votes
0answers
222views
Finding where column slices of elements in multi-dimensional array are equal
Skippable Intro: I have a dataset that corresponds to an observed time-series. The dataset is organized into a dictionary - which contains an array of years, an array of months, an array of days, an ...