Write a function that makes the first number as large as possible by swapping out its digits for digits in the second number. To illustrate: maxPossible (9328, 456) 9658 // 9658 is the largest possible number built from swaps from 456. // 3 replaced with 6 and 2 replaced with 5. Examples maxPossible (523, 76) - 763 maxPossible (9132, 5564) -9655 maxPossible (8732, 91255) → 9755 Notes • Each digit in the second number can only be used once. • Zero to all digits in the second number may be used.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 22PE
icon
Related questions
Question
Write a function that makes the first number as large as possible by swapping out its digits
for digits in the second number.
To illustrate:
maxPossible (9328, 456)→ 9658
// 9658 is the largest possible number built from swaps from 456.
// 3 replaced with 6 and 2 replaced with 5.
Examples
maxPossible (523, 76) 763
maxPossible (9132, 5564) → 9655
maxPossible (8732, 91255) → 9755
Notes
• Each digit in the second number can only be used once.
Zero to all digits in the second number may be used.
Transcribed Image Text:Write a function that makes the first number as large as possible by swapping out its digits for digits in the second number. To illustrate: maxPossible (9328, 456)→ 9658 // 9658 is the largest possible number built from swaps from 456. // 3 replaced with 6 and 2 replaced with 5. Examples maxPossible (523, 76) 763 maxPossible (9132, 5564) → 9655 maxPossible (8732, 91255) → 9755 Notes • Each digit in the second number can only be used once. Zero to all digits in the second number may be used.
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Function Arguments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:
9780357392676
Author:
FREUND, Steven
Publisher:
CENGAGE L
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr