为了准备迎接挑战,我正在尝试解决一堆关于 ruby 的“简单”问题。但是,它们对我来说并不容易:P。
问题状态——>
# Write a function, `nearest_larger(arr, i)` which takes an array and an
# index. The function should return another index, `j`: this should
# satisfy:
#
# (a) `arr[i] < arr[j]`, AND
# (b) there is no `j2` closer to `i` than `j` where `arr[i] < arr[j]`.
#
我不想看答案年份,所以将我目前所知道的内容倾注到编写以下代码中——
def nearest_larger(arr, i)
j = 0
k = i+1
larger_hash = {}
while j < i
larger_hash[arr[j]] = j if arr[i] < arr[j]
j +=1
end
while k < (arr.count - 1) do
larger_hash[arr[k]] = k if arr[i] < arr[k]
k+=1
end
max_value = larger_hash.keys.max
end
nearest_larger([3, 5, 6, 14, 20, 18], 2)
我很确定会有一些漂亮而简单的方法来回答这个问题,但是唉,我不知道为什么我的解决方案会吐出 NoMethodError。
非常感谢任何帮助