Awesome video
Thank you
at 4:03,the return type of function should have been int instead of void.
can u make a video on sudoko solving using recursion
Which is more efficient in this case; iterative factorial or recursive factorial. Both seem to have the same time complexity. iterative take constant space whereas recursive takes o(n) intermediate stack space.
why not --- public static int Factorial(int n){ if (n==1) return 1; return n * Factorial(n-1); } done! Why the facto crap and else?
@Divanshu22verma