Given a 26 letter character set, which is equivalent to character set of English alphabet i.e. (abcd….xyz) and act as a relation. We are also given several sentences and we have to translate them with the help of given new character set.
Examples:
New character set : qwertyuiopasdfghjklzxcvbnm
Input : "utta"
Output : geek
Input : "egrt"
Output : code
We have existing solution for this problem please refer Change string to a new character set link. We will solve this problem in python using Zip() method and Dictionary data structures. Approach is simple,
- Create a dictionary data structure where we will map original character set in english language with new given character set, zip(newCharSet,origCharSet) does it for us. It will map each character of original character set onto each given character of new character set sequentially and return list of tuples of pairs, now we convert it into dictionary using dict().
- Now iterate through original string and convert it into new string.
Implementation:
Python3
def newString(charSet, input ):
origCharSet = 'abcdefghijklmnopqrstuvwxyz'
mapChars = dict ( zip (charSet,origCharSet))
changeChars = [mapChars[ chr ] for chr in input ]
print (''.join(changeChars))
if __name__ = = "__main__" :
charSet = 'qwertyuiopasdfghjklzxcvbnm'
input = 'utta'
newString(charSet, input )
|
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!
Last Updated :
27 Jul, 2022
Like Article
Save Article