Lecture Notes on 17 October 2011 public static int seqSearch (int[] a, int x) { for (int i = 0; i< a.length; i++) { if (x == a[i]) { return i; } } return -1; }