You may have any tricks to simplify the following. ```csharp public bool Equals(IEnumerable<T>? x, IEnumerable<T>? y) { if (x is null) return y is null; if (y is null) return false; return x.SequenceEqual(y); } ```