我正在寻找和 if-in 类似 Python 的 Ruby 语句。
本质上,如果 x在an_array 做
这是我正在处理的代码,其中变量“line”是一个数组。
def distance(destination, location, line)
if destination and location in line
puts "You have #{(n.index(destination) - n.index(location)).abs} stops to go"
end
end