Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Question The current selected programming language is C + + 1 4 . We emphasize the submission of a fully working code over partially correct
Question
The current selected programming language is We emphasize the submission of a fully working code over partially correct but efficient code. Once submitted, you cannot review this problem again. You can use cout to debug your code. The cout may not work in case of syntaxruntime error. The version of GCC being used is
In a university every student is given a student ID and university enrolment number. These both contain digits The student ID contains M digits, and the university enrolment number contains N digits. Every subject is given a unique subject code. While developing a student examination hall entrance system, the system must take the student ID the university enrolment number, and the subject code for which the student is taking an examination. The system must generate the entrance code for the student from the digits of the student ID and the university enrolment number. The generated entrance code must be the largest number of length P made up of digits from the student ID and the university enrolment number. The relative order of the digits from the student ID and the university enrolment number must be preserved.
Write an algorithm to find the largest number of length made up of digits from the student ID and the university enrolment number.
Input
The first line of the input consists of an integer idDigitListsize, representing the number of digits in the student ID M
The next line consists of M spaceseparated integers idDigitList idDigitList idDigitListM representing the digits in the order in which they are present in the student ID
The next line consists of an integer enRollDigitListsize, representing the number of digits in the university enrolment number
The next line consists of spaceseparated integers enRollDigitList enRolIDigitList enRollDigitList representing the digits in the order in which they are present in theuniversity enrolment number
The next line consists of an integer subCode, representing the subject code for which the student is taking an examination P
Input
The first line of the input consists of an integer idDigitListsize, representing the number of digits in the student ID M
The next line consists of M spaceseparated integers idDigitListO idDigitList idDigitListM representing the digits in the order in which they are present in the student ID
The next line consists of an integer enRollDigitListsize, representing the number of digits in the university enrolment number
The next line consists of spaceseparated integers enRollDigitList enRolDigitList enRollDigitList representing the digits in the order in which they are present in theuniversity enrolment number
The next line consists of an integer subCode, representing the subject code for which the student is taking an examination P
Output
Print spaceseparated integers representing the digits of the largest number forme from the student ID and the university enrolment number in the order present.
Constraints
ize, ize
idDigitList idDigitLlist idDigitList
enRollDigitList enRollDigitList enRollDigitList
subCode ize ize
Example
Input:
Output:
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started