common_recursion
common_recursion
if (n <= 2){
return 1;
MAX
if (arr.length - 1 == start) {
return arr[start];
FIND AVG:
if (start == arr.length - 1) {
return arr[start];
} else if (start == 0) {
}
REVERSE
if (S.equals("")) {
return "";
//AB
ISPAL
if (s.length() == 0 || s.length() == 1) {
return true;
return false;
DECtoBIN
if (num == 0) {
return "";
}
Num ways
If n == 0 or n == 1
Return 1;