From 23b30aaeecc83ca066c0e04e4659705a4efdf31b Mon Sep 17 00:00:00 2001 From: Brandon780 Date: Sat, 8 Aug 2020 20:50:48 -0500 Subject: [PATCH] OK espero me salga --- makeCacheMatrix.R | 2 ++ 1 file changed, 2 insertions(+) diff --git a/makeCacheMatrix.R b/makeCacheMatrix.R index 8c8b00c8be3..c657c7f038f 100644 --- a/makeCacheMatrix.R +++ b/makeCacheMatrix.R @@ -3,6 +3,7 @@ makeCacheMatrix <- function(x = matrix()){ set <- function(y){ x <<- y inv <<- NULL + } get <- function() {x} setInverse <- function(inverse) {inv <<- inverse} @@ -21,3 +22,4 @@ cacheSolve <- function(x, ...){ x$setInverse(inv) inv } +