Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You are given two integer arrays nums 1 and nums 2 of lengths m and n respectively. nums 1 and nums 2 represent the digits

You are given two integer arrays nums 1 and nums 2 of lengths m and n respectively. nums 1 and nums 2 represent
the digits of two numbers. You are also given an integer k.
Create the maximum number of length km+n from digits of the two numbers. The relative order of the
digits from the same array must be preserved.
Return an array of the k digits representing the answer.
Example 1:
Input: nums1=[3,4,6,5], nums2=[9,1,2,5,8,3],k=5
Output: 9,8,6,5,3
Example 2:
Input: nums1=[6,7], nums2=[6,0,4],k=5
Output: 6,7,6,0,4
Example 3:
Input: nums1=[3,9], nums2=[8,9],k=3
Output: 9,8,9
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional Microsoft SQL Server 2014 Administration

Authors: Adam Jorgensen, Bradley Ball

1st Edition

111885926X, 9781118859261

More Books

Students also viewed these Databases questions