Skip to content

A java program without control flow other than try...catch and no return or lambdas

Notifications You must be signed in to change notification settings

SilverAndro/JavaAgony

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

JavaAgony

A java program without control flow other than try...catch and no return or lambdas

Full rules:

You cannot use

  • if
  • else
  • for
  • return
  • do
  • while
  • switch
  • case
  • &&
  • ||
  • ::
  • ?
  • ->

Problem being solved:

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

About

A java program without control flow other than try...catch and no return or lambdas

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages