Skip to content

Instantly share code, notes, and snippets.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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;