Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Using TDD develop a CUT that finds the highest number from an array of integers

Specification

  • If the input were {4, 5, 8, 3, 11, 21, 6} the result should be 21.
  • An empty array should throw an exception.
  • A single array should return the single item.
  • If several numbers are equal and highest, only one should be returned


Java sample code here

C# sample code here

  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.