@@ -51,7 +51,7 @@ int factor(int x)
{
if (x < 2)
return 1;
return factor(x - 1) + factor(x - 2);
}
The note is not visible to the blocked user.