Code Workout #1: Sorting Review

Score: 0 / 20.0


Exercises

0 / 2.0

Consider a linear search as shown below.

int linearSearch(int w, int[] num) { // linear search code here } 

Assume you call this method...