Given an input and a number N, find the Nth root of the number(s)
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers59
Suggested Problems
-
Sum all integers from 1 to 2^n
17509 Solvers
-
Calculate the area of a triangle between three points
3430 Solvers
-
316 Solvers
-
Matlab Basics - y as a function of x
527 Solvers
-
2033 Solvers
More from this Author29
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Strictly speaking, your Test Suite only matches the principal root. For example, in the first test case, −1 is also a valid root, as (−1)¹⁰⁰ = +1. See https://en.wikipedia.org/wiki/Nth_root .
Hello, Srishti Saha . All of the 'correct' solutions are requiring rounding of the outputs to pass your Test Suite. That should not be necessary unless you specify it in the Problem Statement; otherwise your Test Suite should allow a tolerance to account for 'floating point errors'. (See Problem 44631.) Please amend. —DIV