HI Good Morning,
*Pune* base one of the leading *IT Healthcare company* is Hiring for below profiles for *Singhgad road, Pune* Location, *Work from Office only*, *Experience min 1 - 4 Years* on similar technologies,
Profile 1 β Laravel (Vacancy 1)
Profile 2 β Node Js, React Js, Angular, Kotlin (Vacancy 2)
Profile 3 β Flutter (Vacancy 1)
Profile 4 β Graphic (Vacancy 1)
Profile 5 β PHP (Vacancy 2)
Interested Please DM resumes (NO CALLS PLZ)
*Pune* base one of the leading *IT Healthcare company* is Hiring for below profiles for *Singhgad road, Pune* Location, *Work from Office only*, *Experience min 1 - 4 Years* on similar technologies,
Profile 1 β Laravel (Vacancy 1)
Profile 2 β Node Js, React Js, Angular, Kotlin (Vacancy 2)
Profile 3 β Flutter (Vacancy 1)
Profile 4 β Graphic (Vacancy 1)
Profile 5 β PHP (Vacancy 2)
Interested Please DM resumes (NO CALLS PLZ)
π2
This media is not supported in your browser
VIEW IN TELEGRAM
One project = 100s of files and increasing
Forwarded from Aman Raj
Array Addition
Have the function ArrayAddition(arr) take the array of numbers stored in arr and return the string true if any combination of numbers in the array (excluding the largest number) can be added up to equal the largest number in the array, otherwise return the string false. For example: if arr contains [4, 6, 23, 10, 1, 3] the output should return true because 4 + 6 + 10 + 3 = 23. The array will not be empty, will not contain all the same elements, and may contain negative numbers.
Examples
Input: new int[] {5,7,16,1,2}
Output: false
Input: new int[] {3,5,-1,8,12}
Output: true
Have the function ArrayAddition(arr) take the array of numbers stored in arr and return the string true if any combination of numbers in the array (excluding the largest number) can be added up to equal the largest number in the array, otherwise return the string false. For example: if arr contains [4, 6, 23, 10, 1, 3] the output should return true because 4 + 6 + 10 + 3 = 23. The array will not be empty, will not contain all the same elements, and may contain negative numbers.
Examples
Input: new int[] {5,7,16,1,2}
Output: false
Input: new int[] {3,5,-1,8,12}
Output: true