본문 바로가기
코딩 테스트/leetcode

Neither Minimum nor Maximum

by ornni 2024. 6. 28.
728x90
반응형

첫번쨰 코드

 

가장 큰 값, 가장 작은 값이 아니면 그냥 return 해버리고,

다 돌았는데 아무것도 이루어지지 않으면 -1을 return 해버리면 된다!!

 

class Solution:
    def findNonMinOrMax(self, nums: List[int]) -> int:
        Max = max(nums)
        Min = min(nums)

        for i in nums:
            if i != Max and i != Min:
                return i
                
        return -1

 

통과!


링크

https://github.com/ornni/leetcode/tree/main/2733-neither-minimum-nor-maximum

 

leetcode/2733-neither-minimum-nor-maximum at main · ornni/leetcode

Collection of LeetCode questions to ace the coding interview! - Created using [LeetHub v3](https://github.com/raphaelheinz/LeetHub-3.0) - ornni/leetcode

github.com

 

반응형

'코딩 테스트 > leetcode' 카테고리의 다른 글

Number of Good Pairs  (0) 2024.07.12
Count Pairs Whose Sum is Less than Target  (0) 2024.06.29
Final Prices With a Special Discount in a Shop  (0) 2024.06.27
Removing Stars From a String  (0) 2024.06.26
Shuffle the Array  (0) 2024.06.25