static bool startsWith(List<int> source, List<int> checker) { for (int i = 0; i < checker.length; i++) { if (source[i] != checker[i]) return false; } return true; }