Given an array of integers, and a value, return true if that value appears within the array,
and false otherwise.
contains([3, 7, 2], 2) ? true
contains([3, 7, 2], 10)? false
contains([8, 8, 5, 1, 4], 8) ? true
Go
...Save, Compile, Run (ctrl-enter)
boolean contains (int[] nums, int value) {
}