每日kata~10~Pick peaks

题目

https://www.codewars.com/kata/5279f6fe5ab7f447890006a7
In this kata, you will write a function that returns the positions and the values of the "peaks" (or local maxima) of a numeric array.

For example, the array arr = [0, 1, 2, 5, 1, 0] has a peak at position 3 with a value of 5 (since arr[3] equals 5).

The output will be returned as an object with two properties: pos and peaks. Both of these properties should be arrays. If there is no peak in the given array, then the output should be {pos: [], peaks: []}.

Example: pickPeaks([3, 2, 3, 6, 4, 1, 2, 3, 2, 1, 2, 3]) should return {pos: [3, 7], peaks: [6, 3]} (or equivalent in other languages)

All input arrays will be valid integer arrays (although it could still be empty), so you won't need to validate the input.

The first and last elements of the array will not be considered as peaks (in the context of a mathematical function, we don't know what is after and before and therefore, we don't know if it is a peak or not).

Also, beware of plateaus !!! [1, 2, 2, 2, 1] has a peak while [1, 2, 2, 2, 3] does not. In case of a plateau-peak, please only return the position and value of the beginning of the plateau. For example: pickPeaks([1, 2, 2, 2, 1]) returns {pos: [1], peaks: [2]} (or equivalent in other languages)

我的笨蛋解

def pick_peaks(arr):
    a = arr
    b = 0
    c = 0
    flag = 0
    res = {"pos": [], "peaks": []}
    for i in range(1,len(arr)-1):
        if a[i]>a[i-1] and a[i]>a[i+1]:
            res["pos"].append(i)
            res["peaks"].append(a[i])
        elif a[i]>a[i-1] and a[i]==a[i+1]:
            b = i
            c = a[i]
            flag = 1
        elif a[i]==a[i-1] and a[i]<a[i+1] and flag==1:
            b = 0
            c = 0
            flag = 0

        elif a[i]==a[i-1] and a[i]>a[i+1] and flag==1:
            res["pos"].append(b)
            res["peaks"].append(c)
            flag = 0

    return res

大神的解

Beautiful

def pick_peaks(arr):
    pos = []
    prob_peak = False
    for i in range(1, len(arr)):
        if arr[i] > arr[i-1]:
            prob_peak = i
        elif arr[i] < arr[i-1] and prob_peak:
            pos.append(prob_peak)
            prob_peak = False
    return {'pos':pos, 'peaks':[arr[i] for i in pos]}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

友情链接更多精彩内容