Skip to content

Instantly share code, notes, and snippets.

using System;
using System.Collections.Generic;
using Xunit;
namespace deque_test {
public class TestsIList {
bool ListCmp(List<int> l1, List<int> l2) {
if (l1.Count != l2.Count)
return false;