Ejemplo n.º 1
0
        public void IsIsomorphicTest_1()
        {
            var solution = new _0205_IsomorphicStrings();

            Assert.IsTrue(solution.IsIsomorphic("egg", "add"));
        }
Ejemplo n.º 2
0
        public void IsIsomorphicTest_3()
        {
            var solution = new _0205_IsomorphicStrings();

            Assert.IsTrue(solution.IsIsomorphic("paper", "title"));
        }
Ejemplo n.º 3
0
        public void IsIsomorphicTest_4()
        {
            var solution = new _0205_IsomorphicStrings();

            Assert.IsFalse(solution.IsIsomorphic("ab", "aa"));
        }
Ejemplo n.º 4
0
        public void IsIsomorphicTest_2()
        {
            var solution = new _0205_IsomorphicStrings();

            Assert.IsFalse(solution.IsIsomorphic("foo", "bar"));
        }