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.
Project Euler #46: Goldbach's other conjecture
Project Euler #46: Goldbach's other conjecture
Sort by
recency
|
18 Discussions
|
Please Login in order to post a comment
My code shows incorrect answer for test case 3 and 4. Can someone help me out on this?
C#
using System;
public class Solution { private static bool[] prime = null;
}
this is the happy_coder solution in python ,to those interested in the python version of the solution
code in c:
bool is_prime(int n){
} int rec(int s){
} int main() {
}
JAva code