Sha256: 8b5e037a6dc73c867bf05c46b97032a611a4d7e1e8a6c788b2c3372c90ade939
Contents?: true
Size: 635 Bytes
Versions: 13
Compression:
Stored size: 635 Bytes
Contents
(ns complex-numbers) (defn real [[a b]] ;; <- arglist goes here ;; your code goes here ) (defn imaginary [[a b]] ;; <- arglist goes here ;; your code goes here ) (defn abs [[a b]] ;; <- arglist goes here ;; your code goes here ) (defn conjugate [[a b]] ;; <- arglist goes here ;; your code goes here ) (defn add [[a b] [c d]] ;; <- arglist goes here ;; your code goes here ) (defn sub [[a b] [c d]] ;; <- arglist goes here ;; your code goes here ) (defn mul [[a b] [c d]] ;; <- arglist goes here ;; your code goes here ) (defn div [[a b] [c d]] ;; <- arglist goes here ;; your code goes here )
Version data entries
13 entries across 13 versions & 1 rubygems