Sha256: cd894b619cd702bcb1cc64b76cf0304be1fa2f430975751de91e9d7738fe2175
Contents?: true
Size: 522 Bytes
Versions: 69
Compression:
Stored size: 522 Bytes
Contents
defmodule SaddlePoints do @doc """ Parses a string representation of a matrix to a list of rows """ @spec rows(String.t()) :: [[integer]] def rows(str) do end @doc """ Parses a string representation of a matrix to a list of columns """ @spec columns(String.t()) :: [[integer]] def columns(str) do end @doc """ Calculates all the saddle points from a string representation of a matrix """ @spec saddle_points(String.t()) :: [{integer, integer}] def saddle_points(str) do end end
Version data entries
69 entries across 69 versions & 1 rubygems