public boolean lucky13(int[] nums) { for (int n : nums) { if (1 == n || 3 == n) return false; } return true; }