比较二维数组中第二维的最后一位数,设定阈值,如果大于该数,则返回该维数
时间: 2024-05-14 08:12:59 浏览: 20
对数组元素进行固定阈值操作
的索引,否则返回-1。
示例代码:
```python
def compare_two_dim_array(arr, threshold):
for i in range(len(arr)):
if arr[i][-1] > threshold:
return i
return -1
```
其中,arr表示二维数组,threshold表示阈值。
示例输入输出:
```python
arr = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
threshold = 7
print(compare_two_dim_array(arr, threshold)) # 输出2
arr = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
threshold = 10
print(compare_two_dim_array(arr, threshold)) # 输出-1
```
阅读全文