Sha256: f90e3055d33d0c62a243f50bfcb71892213384ddae243ac0ff88a340d03d39f2
Contents?: true
Size: 519 Bytes
Versions: 154
Compression:
Stored size: 519 Bytes
Contents
defmodule Matrix 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
154 entries across 154 versions & 1 rubygems