Re: [algogeeks] Designing Interview questions

2016-07-10 Thread Uday Kumar Bachu
e subscribed to the Google Groups > "Algorithm Geeks" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to algogeeks+unsubscr...@googlegroups.com. > -- Uday Kumar Bachu -- You received this message because you are subscribed to the Googl

Re: [algogeeks] LARGEST NUMBER PUZZLE 6 MAY

2011-05-06 Thread uday kumar
9 pow 9. On Fri, May 6, 2011 at 3:41 PM, Bala wrote: > 99! > > Thanks > Bala > > > > On Fri, May 6, 2011 at 2:48 PM, Lavesh Rawat wrote: > >> * >> LARGEST NUMBER PUZZLE >> >> What is the largest number you can get using only 2 digits? >> >> Update Your Answers at : Click >> Here

Re: [algogeeks] ReVerse a string using recursion

2010-09-23 Thread uday kumar
void RevStr (char *str){ char ch = '\0'; if (*str){ ch = *str; RevStr (++str); } printf ("%c", ch); } On Fri, Sep 24, 2010 at 12:37 AM, Nishant Agarwal < nishant.agarwa...@gmail.com> wrote: > > @Albert > i think this should be right > > static int i=0; > int j; > void xstrrev(char *s) > { >

[algogeeks] Invitation to connect on LinkedIn

2009-12-01 Thread Uday Kumar Bachu
LinkedIn Uday Kumar Bachu requested to add you as a connection on LinkedIn: -- Phani, I'd like to add you to my professional network on LinkedIn. - Uday Kumar Accept invitation from Uday Kumar Bachu http://www.linkedin.

[algogeeks] Re: RR*=R* ?

2007-03-28 Thread Uday Kumar Bachu
==> {є, 0, 1, 00, 10, 01, 11, .} R+ = (є + 0 + 1)+ ==> {є, 0, 1, 00, 01, 10, 11, } therefore R.R* == R+ On 3/29/07, BiGYaN <[EMAIL PROTECTED]> wrote: > > > RR* = R* only when R contains a null string. > > else, RR* = R+ > > > > > --