摘要:
defmodule Gateway.Http do def post(conn, url, content) do headers = headers(conn) case HTTPoison.post(url, content, headers) do {:ok, %HTTPoison.Respo 阅读全文
摘要:
冒泡排序: defmodule BubbleSort do @moduledoc """ Implementation of BubbleSort algorithm (https://en.wikipedia.org/wiki/Bubblesort) Given an array of numbe 阅读全文