Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Task 3 English There is an array A consisting of N integers. What is the maximum sum of two integers from A that share their

Task 3
English
There is an array A consisting of N integers. What is the maximum sum of two integers from A that share their first and last digits? For example, 1007 and 1.67 share their first (1) and last (7) digits, whereas 2002 and 55 do not.
Write a function:
class Solution { public int solution(int[] A); }
that, given an array A consisting of N integers, returns the maximum sum of two integers that share their first and last digits. If there are no two integers that share their first and last digits, the function should return -1.
Examples:
Given A=[130,191,200,10], the function should return 140. The only integers in A that share first and last digits are 130 and 10.
Given A=[405,45,300,300], the function should return 600. There are two pairs of integers that share first and last digits: (405,45) and (300,300). The sum of the two 300 s is bigger than the sum of 405 and 45.
Given A=[50,222,49,52,25], the function should return -1. There are no two integers that share their first and last digits.
Given A=[30,909,3190,99,3990,9009], the function should return 9918.
Nrite an efficient algorithm for the following assumptions:
N is an integer within the range 1..100,000;
each element of array A is an integer within the range 10..1,000,000,000.
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

Automating Access Databases With Macros

Authors: Fish Davis

1st Edition

1797816349, 978-1797816340

More Books

Students also viewed these Databases questions

Question

Why should an organization conduct a vendor audit?

Answered: 1 week ago

Question

Draw a labelled diagram of the Dicot stem.

Answered: 1 week ago