Nest all content into snippets
This commit is contained in:
21
snippets/python/s/min-element-index.md
Normal file
21
snippets/python/s/min-element-index.md
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Index of min element
|
||||
type: snippet
|
||||
language: python
|
||||
tags: [math,list]
|
||||
cover: two-cities
|
||||
dateModified: 2020-11-02T19:28:27+02:00
|
||||
---
|
||||
|
||||
Returns the index of the element with the minimum value in a list.
|
||||
|
||||
- Use `min()` and `list.index()` to obtain the minimum value in the list and then return its index.
|
||||
|
||||
```py
|
||||
def min_element_index(arr):
|
||||
return arr.index(min(arr))
|
||||
```
|
||||
|
||||
```py
|
||||
min_element_index([3, 5, 2, 6, 10, 7, 9]) # 2
|
||||
```
|
||||
Reference in New Issue
Block a user