Pseudo-Isomorphic Substrings

Sort by

recency

|

16 Discussions

|

  • + 1 comment
    def pseudoIsomorphicSubstrings(s):
        # Write your code here
        def cod(w):
            c, n, d = '', ord('a') - 1, {}
            for letter in w:
                if letter in d.keys():
                    c += d[letter]
                else:
                    n += 1
                    c += chr(n)
                    d[letter] = chr(n)
            return c
    
  • + 0 comments

    Here is my solution in java, python, C, C++, Csharp HackerRank Pseudo-Isomorphic Substrings

  • + 0 comments

    Here is the solution of Pseudo-Isomorphic Substrings Click Here

  • + 1 comment

    how to skip task?

  • + 0 comments

    The worst explaination!