palindrom [quote]oh idk this is acm problem i thought everything is correct but online judge did not acce...
palindromWe say that a number is a palindrom if it is the same when read from left to right or from right to ...
palindromI have been testing a few number to find error help me debugging... [code] #include <io...
recursion [code] bool palindrome_2(vector<int>&vec,int begin,int end){ if(begin >= end) { //c...
recursion when i input 231 -> base to is 11100111 it pass all the false and returned true but after return t...