Skip to content

Instantly share code, notes, and snippets.

@cloudy9101
Created April 1, 2015 10:47
Show Gist options
  • Save cloudy9101/6c5a724c609e9e79c198 to your computer and use it in GitHub Desktop.
Save cloudy9101/6c5a724c609e9e79c198 to your computer and use it in GitHub Desktop.
每日一题 2015.4.1
secret_1 = "whatisup"
triplets_1 = [
['t','u','p'],
['w','h','i'],
['t','s','u'],
['a','t','s'],
['h','a','p'],
['t','i','s'],
['w','h','s']
]
Test.assert_equals(recover_secret(triplets_1), secret_1)
-----
def recover_secret triplets
# TODO
end
题目描述:
There is a secret string which is unknown to you. Given a collection of random triplets from the string, recover the original string.
A triplet here is defined as a sequence of three letters such that each letter occurs somewhere before the next in the given string. "whi" is a triplet for the string "whatisup".
As a simplification, you may assume that no letter occurs more than once in the secret string.
You can assume nothing about the triplets given to you other than that they are valid triplets and that they contain sufficient information to deduce the original string. In particular, this means that the secret string will never contain letters that do not occur in one of the triplets given to you.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment