Skip to content

Instantly share code, notes, and snippets.

@joowkim
Created January 3, 2017 05:22
Show Gist options
  • Save joowkim/cef1d821401bcb2b4a987f7f8efcfa16 to your computer and use it in GitHub Desktop.
Save joowkim/cef1d821401bcb2b4a987f7f8efcfa16 to your computer and use it in GitHub Desktop.
cube_root
cube_root <- function(cube, power) {
return (power ^ (1/cube))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment