Login using Social Account
     Continue with GoogleLogin using your credentials
You are given two integer arrays nums1 and nums2 both of unique elements, where nums1 is a subset of nums2.
Find all the next greater numbers for nums1's elements in the corresponding places of nums2.
The Next Greater Number of a number x in nums1 is the first greater number to its right in nums2. If it does not exist, return -1 for this number.
Example 1:
Example 2:
Constraints:
nextGreaterElement Complete the below code in the right side coding panel
def nextGreaterElement(nums1: list, nums2: list) -> list:
    # your code goes here
 
            Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
No hints are availble for this assesment
Note - Having trouble with the assessment engine? Follow the steps listed here
Loading comments...