Python - Mirror Image of String
Last Updated :
24 Apr, 2023
Given a String, perform its mirror imaging, return "Not Possible" if mirror image not possible using english characters.
Input : test_str = 'boid' Output : doib Explanation : d replaced by b and vice-versa as being mirror images. Input : test_str = 'gfg' Output : Not Possible Explanation : Valid Mirror image not possible.
Method : Using loop + lookup dictionary
This is one way in which this task can be performed. In this, we construct lookup dictionary for all valid mirrorable english characters, then perform task of access from them.
Python3
# Python3 code to demonstrate working of
# Mirror Image of String
# Using Mirror Image of String
# initializing strings
test_str = 'void'
# printing original string
print("The original string is : " + str(test_str))
# initializing mirror dictionary
mir_dict = {'b':'d', 'd':'b', 'i':'i', 'o':'o', 'v':'v', 'w':'w', 'x':'x'}
res = ''
# accessing letters from dictionary
for ele in test_str:
if ele in mir_dict:
res += mir_dict[ele]
# if any character not present, flagging to be invalid
else:
res = "Not Possible"
break
# printing result
print("The mirror string : " + str(res))
OutputThe original string is : void
The mirror string : voib
Time Complexity: O(n)
Space Complexity: O(n)
Method 2 : using string slicing to reverse the string and a lookup dictionary to replace the mirrored characters.
step by step approach:
Define the input string.
Define a dictionary that maps mirrored characters to their respective values.
Reverse the input string using string slicing.
Iterate over the reversed string and replace each character with its mirror image from the dictionary. If the character is not present in the dictionary, set the result string to "Not Possible" and break the loop.
Reverse the result string back to its original order.
Print the original and mirror strings.
Python3
# Python3 code to demonstrate working of
# Mirror Image of String
# Using String Slicing and Lookup Dictionary
# Define input string
test_str = 'void'
# Define mirror dictionary
mir_dict = {'b': 'd', 'd': 'b', 'i': 'i', 'o': 'o', 'v': 'v', 'w': 'w', 'x': 'x'}
# Reverse the input string
rev_str = test_str[::-1]
# Initialize result string
res = ''
# Iterate over reversed string and replace mirrored characters
for ele in rev_str:
if ele in mir_dict:
res += mir_dict[ele]
else:
res = "Not Possible"
break
# Reverse the result string
mir_str = res[::-1]
# Print the original and mirror strings
print("The original string is : " + str(test_str))
print("The mirror string : " + str(mir_str))
OutputThe original string is : void
The mirror string : voib
The time complexity of this approach is O(n) as it involves iterating over the string only once.
The auxiliary space complexity is also O(n) because we create a new reversed string and a new mirrored string.
Similar Reads
String Interning in Python String interning is a memory optimization technique used in Python to enhance the efficiency of string handling. In Python, strings are immutable, meaning their values cannot be changed after creation. String interning, or interning strings, involves reusing existing string objects rather than creat
2 min read
How to copy a string in Python Creating a copy of a string is useful when we need a duplicate of a string to work with while keeping the original string intact, strings in Python are immutable which means they can't be altered after creation, so creating a copy sometimes becomes a necessity for specific use cases.Using SlicingSli
2 min read
Similarity Metrics of Strings - Python In Python, we often need to measure the similarity between two strings. For example, consider the strings "geeks" and "geeky" âwe might want to know how closely they match, whether for tasks like comparing user inputs or finding duplicate entries. Let's explore different methods to compute string si
3 min read
Similarity Metrics of Strings - Python In Python, we often need to measure the similarity between two strings. For example, consider the strings "geeks" and "geeky" âwe might want to know how closely they match, whether for tasks like comparing user inputs or finding duplicate entries. Let's explore different methods to compute string si
3 min read
How to Repeat a String in Python? Repeating a string is a simple task in Python. We can create multiple copies of a string by using built-in features. This is useful when we need to repeat a word, phrase, or any other string a specific number of times. Using Multiplication Operator (*):Using Multiplication operator (*) is the simple
2 min read
Swap elements in String list - Python Swapping elements in a string list means we need to exchange one element with another throughout the entire string list in Python. This can be done using various methods, such as using replace(), string functions, regular expressions (Regex), etc. For example, consider the original list: ['Gfg', 'is
3 min read