We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Day 9: Recursion 3
Day 9: Recursion 3
Sort by
recency
|
1139 Discussions
|
Please Login in order to post a comment
def factorial(n): if n <= 1: return 1 else: return n * factorial(n-1)
This is the code I wrote in Python, but I get the error “Function ‘factorial’ not found” every time.
There is something wrong with the default input and output streams provided in Java.
I kept receiving an instant "Compilation Error: 'factorial' method not found" until I replaced the Buffered streams with Scanner for input and used System.out.println to print the result.
You may want to consider this if you encounter a compilation error even though all tests pass.
This is the code I wrote, and I am getting:
Wrong Answer Function 'factorial' not found
import java.io.; import java.math.; import java.security.; import java.text.; import java.util.; import java.util.concurrent.; import java.util.function.; import java.util.regex.; import java.util.stream.*; import static java.util.stream.Collectors.joining; import static java.util.stream.Collectors.toList;
class Result {
}
public class Solution { public static void main(String[] args) throws IOException { BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(System.getenv("OUTPUT_PATH")));
}
Javascript Shortest soluce :