[Solution]205. Isomorphic Strings
Problem
Problem_Link
Solutions (time, space)
O(n), O(n) length of String
class Solution{
public boolean isIsomorphic(String s, String t) {
int[] chkList = new int[256];
for (int i = s.length() - 1; i > -1; --i) {
if (...
eunhanlee.hashnode.dev1 min read