All public logs
Combined display of all available logs of ElixirBlocks. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 04:58, 2 September 2023 Admin talk contribs created page How to Convert String to Key Value Map of Items and Count Number (Created page with "<source> words = "The world hello world to the world" list = String.split(words," ") Enum.map(list, fn(item)-> item end)|> Enum.frequencies()|> IO.inspect #%{"The" => 1, "hello" => 1, "the" => 1, "to" => 1, "world" => 3} </source>")