示例#1
0
        public void IsProperSubBagOfTest4()
        {
            var bag = new HashBag <int> {
                3, 5, 1, 4, 6, 2
            };
            var l = new List <int> {
                1, 2, 3, 9
            };

            Assert.False(bag.IsProperSubBagOf(l));
        }
示例#2
0
        public void IsProperSubBagOfTest2()
        {
            var bag = new HashBag <int> {
                3, 5, 1, 4, 6, 2
            };
            var l = new List <int> {
                1, 2, 3, 4, 5, 6, 1, 2, 5, 6
            };

            Assert.True(bag.IsProperSubBagOf(l));
        }