(* * Name: * NetID: *) (* Returns the number whose decimal digits are reversed. *) fun revint(n:int) : int = raise Fail "not implemented" (* Adds two binary numbers represented as lists of bits. *) fun addbin(l:int list * int list) : int list = raise Fail "not implemented"