Leetcode PHP题解--D52 496. Next Greater Element I


D52 496. Next Greater Element I

题目链接

496. Next Greater Element I

题目分析

给定两个数组,其内元素不重复。

数组1是数组2的子集,返回每个在数组1中的元素在数组2对应位置以右最大的元素。

思路

只能逐个遍历吧。

最终代码

若觉得本文章对你有用,欢迎用爱发电资助。


<< 上一篇: Leetcode PHP题解--D51 136. Single Number

>> 下一篇: Leetcode PHP题解--D53 566. Reshape the Matrix