code
Here is my code:
defmodule HW3A do
def onepad(int, n \\ 0, list \\ []) do
case n do
^int -> list
_ -> onepad(int, n + 1, list ++ [:rand.uniform(int)])
end
end
defp string_to_num(string_grahemes, alphabets, cipher_nums, num_list \\ []) do
string_to_num(tl(string_grahemes), alphabets, tl(cipher_nums), [(Keyword.get(alphabets, hd(string_grahemes) |> String.to_atom)) + hd(cipher_nums) | num_list])
end
defp string_to_num([], alphabets, cipher_nums, num_list) do
num_list
end
def cipher(string) do
numbers = onepad(String.length(string))
alphabets = Enum.zip([: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,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26])
string_num = []
encrypted_numbers = string_num(String.graphemes(string), alphabets, numbers, num_list)
IO.inspect(encrypted_numbers)
end
end
When I call the function I get the following error:
warning: function string_to_num/4 is unused
practice.exs:113
** (CompileError) practice.exs:127: undefined function num_list/0
(elixir 1.12.2) src/elixir_locals.erl:114: anonymous fn/3 in :elixir_locals.ensure_no_undefined_local/3
practice.exs:105: (file)
What am I doing wrong here ? I just want to return the argument.
Thanks in advance.
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Qqwy
Can you post the rest of your module? I’m pretty sure that the problem originates elsewhere, as the following compiles (with a bunch of warnings):
code
I edited the post and the whole module is in the post now.
zwippie
Not an exact answer, but you should probably swap the functions (put the last one before the first) because now
string_to_numwith an empty list as the first argument will be processed by the first function, where I think you would like it to use the second function.Jacek
Here you call
string_numand usenum_listas a parameter. Since such a variable does not exist in the scope of thecipherfunction, the compiler looks for a function but of course it does not exist as well.derek
As @zwippie suggests, you need to put the
string_to_num/4with the[]first param first, since if the first param is[], the first clause will match, with[]being assigned tostring_grahemes. You should then be getting a compiler warning to that effect.You should also be getting a compiler warning: