Java Arrays Part One-26 Problems with Solutions
Problem-1 Given an array of ints, return true if 6 appears as either the first or last element in the array. The array will be length 1 or more. Example firstLast6({1, 2, 6}) → true firstLast6({6, 1, 2, 3}) → true firstLast6({13, 6, 1, 2, 3}) → false Solution public boolean firstLast6(int[] nums) { return(nums[0]==6 … [Read more…]