-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCheck-Permutation.py
91 lines (65 loc) · 1.77 KB
/
Check-Permutation.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Thu Jan 2 04:16:29 2020
@author: suryakantkumar
"""
'''
Problem : Given two strings, check if they are permutations of each other. Return true or false.
Permutation means - length of both the strings should same and should contain same set of characters. Order of characters doesn't matter.
Note : Input strings contain only lowercase english alphabets.
Input format : Line 1 : String 1
Line 2 : String 2
Sample Input 1 :
abcde
baedc
Sample Output 1 :
true
Sample Input 2 :
abc
cbd
Sample Output 2 :
false
'''
#### Solution 01 : Using frequency Array
string1 = input()
string2 = input()
if len(string1) == len(string2):
li = [0]*256
origional = [0]*256
for char in string1: # Adding frequency of characters using first string
li[ord(char)] += 1
for char in string2: # Removing frequency of characters using Second string
li[ord(char)] -= 1
if li == origional:
print("true")
else:
print("false")
else:
print("false")
#### Solution 02 : Using Dictionary
string1 = input()
string2 = input()
def Permutation(string1, string2):
frequency = {}
for char in string1:
if char in frequency:
frequency[char] += 1
else:
frequency[char] = 1
for char in string2:
if char in frequency:
if frequency[char] == 1:
del frequency[char]
else:
frequency[char] -= 1
else:
return False
if frequency:
return False
else:
return True
if Permutation(string1, string2):
print("true")
else:
print("false")