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.
int find_nth_term(int n, int a, int b, int c)
{
int res = (a+b)+c;
n += res;
return (n);
}
its execute success but other test scenarios failed. Why? Any idea
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Calculate the Nth term
You are viewing a single comment's thread. Return to all comments →
int find_nth_term(int n, int a, int b, int c) { int res = (a+b)+c; n += res; return (n);
} its execute success but other test scenarios failed. Why? Any idea