Initial upload

This commit is contained in:
2022-08-24 14:28:45 +02:00
parent c67653ddee
commit 57bc7b0289
370 changed files with 18479 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
defmodule TopSecret do
def to_ast(string) do
case Code.string_to_quoted(string) do
{:ok, ast} -> ast
_ -> "Error"
end
end
def decode_secret_message_part(ast, acc) do
# Please implement the decode_secret_message_part/2 function
end
def decode_secret_message(string) do
# Please implement the decode_secret_message/1 function
end
end