Skip to content

Instantly share code, notes, and snippets.

@denzuko
Created November 29, 2019 02:18
Show Gist options
  • Save denzuko/08d39b8e4ee6dcb14787471f573e0065 to your computer and use it in GitHub Desktop.
Save denzuko/08d39b8e4ee6dcb14787471f573e0065 to your computer and use it in GitHub Desktop.
#!/usr/bin/which python3
## Coding Challenge: Nov. 25 (find the hidden message)
## (C)2019 Dallas Makerspace. All Rights Reserved.
## Distributed under Modified BSD 3 Class Licence.
## Author(s):
## - Dwight Spencer (@Denzuko)
channels = [
['48', '61', '70'],
['70', '79', '20'],
['54', '68', '61'],
['6e', '6b', '73'],
['67', '69', '76'],
['69', '6e', '67']
]
def toString(x):
for data in x:
print("".join(data))
def decode():
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment