A java program without control flow other than try...catch and no return or lambdas
You cannot use
ifelseforreturndowhileswitchcase&&||::?->
There is an array arr, which contains only non-negative numbers. Create the largest number using all of the non-negative numbers of the given array arr.
Example: IN: {35, 1, 9} OUT: 9351