-
-
Notifications
You must be signed in to change notification settings - Fork 46.8k
subset_generation #326
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
subset_generation #326
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
84398b7
subset_generation
BobTheBuilder44 f5f4ddb
Rename subset_generation to subset_generation.py
BobTheBuilder44 52cebaa
Update subset_generation.py
BobTheBuilder44 599d04a
Create morse_Code_implementation.py
BobTheBuilder44 c6514cb
Any more changes pls let me know
BobTheBuilder44 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
# Python program to implement Morse Code Translator | ||
|
||
|
||
# Dictionary representing the morse code chart | ||
MORSE_CODE_DICT = { 'A':'.-', 'B':'-...', | ||
'C':'-.-.', 'D':'-..', 'E':'.', | ||
'F':'..-.', 'G':'--.', 'H':'....', | ||
'I':'..', 'J':'.---', 'K':'-.-', | ||
'L':'.-..', 'M':'--', 'N':'-.', | ||
'O':'---', 'P':'.--.', 'Q':'--.-', | ||
'R':'.-.', 'S':'...', 'T':'-', | ||
'U':'..-', 'V':'...-', 'W':'.--', | ||
'X':'-..-', 'Y':'-.--', 'Z':'--..', | ||
'1':'.----', '2':'..---', '3':'...--', | ||
'4':'....-', '5':'.....', '6':'-....', | ||
'7':'--...', '8':'---..', '9':'----.', | ||
'0':'-----', ', ':'--..--', '.':'.-.-.-', | ||
'?':'..--..', '/':'-..-.', '-':'-....-', | ||
'(':'-.--.', ')':'-.--.-'} | ||
|
||
|
||
def encrypt(message): | ||
cipher = '' | ||
for letter in message: | ||
if letter != ' ': | ||
|
||
|
||
cipher += MORSE_CODE_DICT[letter] + ' ' | ||
else: | ||
|
||
cipher += ' ' | ||
|
||
return cipher | ||
|
||
|
||
def decrypt(message): | ||
|
||
message += ' ' | ||
|
||
decipher = '' | ||
citext = '' | ||
for letter in message: | ||
|
||
if (letter != ' '): | ||
|
||
|
||
i = 0 | ||
|
||
|
||
citext += letter | ||
|
||
else: | ||
|
||
i += 1 | ||
|
||
|
||
if i == 2 : | ||
|
||
|
||
decipher += ' ' | ||
else: | ||
|
||
|
||
decipher += list(MORSE_CODE_DICT.keys())[list(MORSE_CODE_DICT | ||
.values()).index(citext)] | ||
citext = '' | ||
|
||
return decipher | ||
|
||
|
||
def main(): | ||
message = "Morse code here" | ||
result = encrypt(message.upper()) | ||
print (result) | ||
|
||
message = result | ||
result = decrypt(message) | ||
print (result) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# python program to print all subset combination of n element in given set of r element . | ||
#arr[] ---> Input Array | ||
#data[] ---> Temporary array to store current combination | ||
# start & end ---> Staring and Ending indexes in arr[] | ||
# index ---> Current index in data[] | ||
#r ---> Size of a combination to be printed | ||
def combinationUtil(arr,n,r,index,data,i): | ||
#Current combination is ready to be printed, | ||
# print it | ||
if(index == r): | ||
for j in range(r): | ||
print(data[j],end =" ") | ||
print(" ") | ||
return | ||
# When no more elements are there to put in data[] | ||
if(i >= n): | ||
return | ||
#current is included, put next at next | ||
# location | ||
data[index] = arr[i] | ||
combinationUtil(arr,n,r,index+1,data,i+1) | ||
# current is excluded, replace it with | ||
# next (Note that i+1 is passed, but | ||
# index is not changed) | ||
combinationUtil(arr,n,r,index,data,i+1) | ||
# The main function that prints all combinations | ||
#of size r in arr[] of size n. This function | ||
#mainly uses combinationUtil() | ||
def printcombination(arr,n,r): | ||
# A temporary array to store all combination | ||
# one by one | ||
data = [0]*r | ||
#Print all combination using temprary | ||
#array 'data[]' | ||
combinationUtil(arr,n,r,0,data,0) | ||
# Driver function to check for above function | ||
arr = [10,20,30,40,50] | ||
printcombination(arr,len(arr),3) | ||
#This code is contributed by Ambuj sahu |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same things as above.