罗布乐思前端面经
1、自我介绍
2、get和post的区别
2、react 底层原理你都知道哪些
3、用过什么请求头
4、编程题
// You are given two arrays (without duplicates) nums1 and nums2 // where nums1’s elements are subset of nums2. // Find all the result for nums1's elements in the // corresponding places of nums2. // The result of a number x in nums1 is the First // Bigger Number to ITS right in nums2. If result does not exist, // output -1 for this number. // Example 1: // Input: nums1 = [4,1,2], nums2 = [1,3,4,2]. // Output: [-1,3,-1] // Example 2: // Input: nums1 = [4,2,1,3,5], nums2 = [4,2,1,3,5]. // Output: [5,3,3,5,-1]