2057. 值相等的最小索引
为保证权益,题目请参考 2057. 值相等的最小索引(From LeetCode).
解决方案1
Python
python
# 2057. 值相等的最小索引
# https://leetcode-cn.com/problems/smallest-index-with-equal-value/
################################################################################
from typing import List
class Solution:
def smallestEqual(self, nums: List[int]) -> int:
for i, n in enumerate(nums):
if i % 10 == n:
return i
return -1
################################################################################
if __name__ == "__main__":
solution = Solution()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19