Algorithm/src/test/java/hash/IsIsomorphicTest.java

16 lines
283 B
Java

package hash;
import org.junit.Test;
import static org.junit.Assert.*;
public class IsIsomorphicTest {
@Test
public void isIsomorphic() {
String s = "egg", t = "add";
IsIsomorphic solution = new IsIsomorphic();
solution.isIsomorphic(s,t);
}
}