```python >>> import array_api_strict as xp >>> xp.reshape(xp.asarray([1,2]), -1) Array([1, 2], dtype=array_api_strict.int64) ``` however, the [Array API](https://data-apis.org/array-api/latest/API_specification/generated/array_api.reshape.html#reshape) states that `shape` must be strictly a tuple.