16 lines
283 B
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);
|
|
|
|
}
|
|
} |