Re: [algogeeks] Re: Run Length Decoding... inplace

2012-04-01 Thread Anurag atri
>> *Kalyan >> >> Dont take life seriously as it isnt Permanent! >> >> * >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Algorithm Geeks" group. >> To post to this group, send email to algogeeks@g

Re: [algogeeks] Re : Any hints[kth smallest contiguous sum] ?

2012-03-21 Thread Anurag atri
>>>>>>>>>> >>>>>>>>> >>>>>>>>> -- >>>>>>>>> You received this message because you are subscribed to the Google >>>>>>>>> Groups "Algorithm Geeks&quo

Re: [algogeeks] puzzle

2012-02-29 Thread Anurag atri
@shady: Observation only .. On Wed, Feb 29, 2012 at 9:03 PM, shady wrote: > anurag how did you reach that solution ? > can you elaborate... > > > On Wed, Feb 29, 2012 at 8:11 PM, Anurag atri wrote: > >> nth term : (n! + 2^n - n) >> >> >> On Wed

Re: [algogeeks] puzzle

2012-02-29 Thread Anurag atri
t; -- > You received this message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to algogeeks@googlegroups.com. > To unsubscribe from this group, send email to > algogeeks+unsubscr...@googlegroups.com. > For m

Re: [algogeeks] BYTES - LESS THAN 45 MINS TO GO

2012-02-17 Thread Anurag atri
algogeeks+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. > > -- Regards Anurag Atri -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post t

Re: [algogeeks] Microsoft Internship

2011-08-03 Thread Anurag atri
http://groups.google.com/group/algogeeks?hl=en. > -- Regards Anurag Atri III year Computer Engineering Delhi College Of Engineering -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeek

Re: [algogeeks] Microsoft Internship

2011-08-02 Thread Anurag atri
> For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. > -- Regards Anurag Atri III year Computer Engineering Delhi College Of Engineering -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks&

Re: [algogeeks] binary search

2011-07-31 Thread Anurag atri
else high = mid; } if ((low < N) && (A[low] == value)) return low; else return -1; } Regards Anurag Atri -- You received this message because you are subscribed to

Re: [algogeeks] microsoft ques

2011-07-25 Thread Anurag atri
@surender yup , thanx for pointing :) On Tue, Jul 26, 2011 at 7:27 AM, surender sanke wrote: > @anurag , it fails for {4,5,-2,0,-3,-4,4,2,3,5,-7}; > urs calculates from index 4 to 9. > but maximum product is from index 5 to 10 > > surender > > On Mon, Jul 25, 2011 at 11:38

Re: [algogeeks] microsoft ques

2011-07-25 Thread Anurag atri
Time O(n) , Space O(1) int maximum_continuous_product ( int numbers[] , int size ) { int i ; int before_negative = 0 ; int current_p = 1 ; int max_p = 0 ; int is_negative = 0 ; for ( i = 0 ; i < size ; i ++ ) { if ( numbers[i] < 0 ) { if (

Re: [algogeeks] output plzz

2011-07-23 Thread Anurag atri
H Year BE.** > Information Science Dept* > *PESIT, Bengaluru . > * > > > > > On Sat, Jul 23, 2011 at 11:34 PM, Anurag atri wrote: > >> Dev c++ , which one are you using ? >> >> On Sun, Jul 24, 2011 at 12:01 PM, sameer.mut...@gmail.com < >> sameer.mut...@

Re: [algogeeks] output plzz

2011-07-23 Thread Anurag atri
thuraj R. > 4TH Year BE.** > Information Science Dept* > *PESIT, Bengaluru . > * > > > > > On Sat, Jul 23, 2011 at 11:23 PM, shady wrote: > >> it is not coming like that ? >> >> >> On Sun, Jul 24, 2011 at 11:41 AM, Anurag atri >> wrote

Re: [algogeeks] output plzz

2011-07-23 Thread Anurag atri
The output will be This is 10 times charlie Thisis10timescharlie and it makes sense , this will be helpful http://www.cplusplus.com/reference/clibrary/cstdio/sscanf/ Regards Anurag Atri -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks"

Re: [algogeeks] Re: C OUTPUT HELP

2011-07-20 Thread Anurag atri
@Nicks : Kindly share the source from where you are practicing these c output questions .. Thank You :) -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this

Re: [algogeeks] Re: Adding w/o +

2011-07-20 Thread Anurag atri
gogeeks+unsubscr...@googlegroups.com. >>>>>> > For more options, visit this group at >>>>>> > http://groups.google.com/group/algogeeks?hl=en. >>>>>> > >>>>>> >>>>>> >>>>>> >>>>

Re: [algogeeks] puzzle

2011-07-07 Thread Anurag atri
@googlegroups.com. > To unsubscribe from this group, send email to > algogeeks+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. > -- Regards Anurag Atri III year Computer Engineering Delhi College Of Engineeri

Re: [algogeeks] Re: meaning of null in output

2011-07-05 Thread Anurag atri
ups > "Algorithm Geeks" group. > To post to this group, send email to algogeeks@googlegroups.com. > To unsubscribe from this group, send email to > algogeeks+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=

Re: [algogeeks] Reuest for a book

2011-05-09 Thread Anurag atri
sincerely, >> >> Charles. >> >> > -- > You received this message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to algogeeks@googlegroups.com. > To unsubscribe from this group, s

Re: [algogeeks] [brain teaser ] Hardest Brain Teaser 22april

2011-04-22 Thread Anurag atri
ups > "Algorithm Geeks" group. > To post to this group, send email to algogeeks@googlegroups.com. > To unsubscribe from this group, send email to > algogeeks+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. >

Re: [algogeeks] [brain teaser ] sequence number puzzle 18april

2011-04-18 Thread Anurag atri
googlegroups.com. >> For more options, visit this group at >> http://groups.google.com/group/algogeeks?hl=en. >> > > -- > You received this message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, se

Re: [algogeeks] Re: Square of Large integer

2011-04-14 Thread Anurag atri
s?hl=en. >> >> > -- > You received this message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to algogeeks@googlegroups.com. > To unsubscribe from this group, send email to > algogeeks+unsubscr.

Re: [algogeeks] Re: Interview Question

2011-04-08 Thread Anurag atri
gt; For more options, visit this group at >>> http://groups.google.com/group/algogeeks?hl=en. >>> >>> >> >> >> -- >> P.V.N.S.S. Krishna Murthy, >> Intern at Broadcom Private Limited, >> Bangalore, >> Contact no:- +91984581299

Re: [algogeeks] Interview Question

2011-04-07 Thread Anurag atri
> That can be moved. Basically, he is trying to convey that move the data of >> temp->next to temp. That's perfectly fine. >> >> >> On Thu, Apr 7, 2011 at 2:05 PM, Akash Mukherjee wrote: >> >>> @ anurag >>> >>> temp -> data = (

Re: [algogeeks] Interview Question

2011-04-06 Thread Anurag atri
rithm Geeks" group. > To post to this group, send email to algogeeks@googlegroups.com. > To unsubscribe from this group, send email to > algogeeks+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. > -- Re

Re: [algogeeks] Output of the code

2011-03-28 Thread Anurag atri
ubscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to algogeeks@googlegroups.com. > To unsubscribe from this group, send email to > algogeeks+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.goog

Re: [algogeeks] Re: 23march

2011-03-23 Thread Anurag atri
ttp://groups.google.com/group/algogeeks?hl=en. >> >> > -- > You received this message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to algogeeks@googlegroups.com. > To unsubscribe from this gro

Re: [algogeeks] If any one have algorithms for interviews by adnan aziz ebook... Please mail ...

2011-03-22 Thread Anurag atri
;> > > -- > You received this message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to algogeeks@googlegroups.com. > To unsubscribe from this group, send email to > algogeeks+unsubscr...@googlegroups

Re: [algogeeks] Re: prime number using Sieve of Eratosthenes

2011-03-21 Thread Anurag atri
better explained by Reddy's program :) On Mon, Mar 21, 2011 at 6:00 PM, Anurag atri wrote: > take an array and put 0 at all positions in it (except 2 ) , then when you > mark a number as a multiple of a prime number ( 2 to start with ) put 1 in > that place ..then look for the f

Re: [algogeeks] Re: SPOJ problem-BRCKTS

2011-03-21 Thread Anurag atri
> http://groups.google.com/group/algogeeks?hl=en. > > -- Regards Anurag Atri -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send

Re: [algogeeks] Re: prime number using Sieve of Eratosthenes

2011-03-21 Thread Anurag atri
PM, rohit wrote: > i just want to know , when we make a program how update array after > deleting alternate element. > > On Mar 21, 4:37 pm, Anurag atri wrote: > > what did you not understand in this ? > > > > On Mon, Mar 21, 2011 at 4:59 PM, rohit > wrote: >

Re: [algogeeks] prime number using Sieve of Eratosthenes

2011-03-21 Thread Anurag atri
http://groups.google.com/group/algogeeks?hl=en. > > -- Regards Anurag Atri -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send emai

Re: [algogeeks] chk dis out

2011-03-20 Thread Anurag atri
@Sanchit - :) On Mon, Mar 21, 2011 at 9:38 AM, Akash Mukherjee wrote: > thanks, :) > > > On Sun, Mar 20, 2011 at 8:21 PM, Anurag atri wrote: > >> http://mathforum.org/library/drmath/view/57919.html >> check this out . >> >> On Sun, Mar 20, 2011 at 7:38 PM,

Re: [algogeeks] SPOJ problem-BRCKTS

2011-03-20 Thread Anurag atri
eks+unsubscr...@googlegroups.com. >>> For more options, visit this group at >>> http://groups.google.com/group/algogeeks?hl=en. >>> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Algorithm Ge

Re: [algogeeks] chk dis out

2011-03-20 Thread Anurag atri
his message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to algogeeks@googlegroups.com. > To unsubscribe from this group, send email to > algogeeks+unsubscr...@googlegroups.com. > For more options, visit this g

Re: [algogeeks] Re: SPOJ problem-BRCKTS

2011-03-19 Thread Anurag atri
;> > -- > You received this message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to algogeeks@googlegroups.com. > To unsubscribe from this group, send email to > algogeeks+unsubscr...@googlegroups.com. >

Re: [algogeeks] SPOJ Problem : PRIME1

2011-03-18 Thread Anurag atri
le Groups > "Algorithm Geeks" group. > To post to this group, send email to algogeeks@googlegroups.com. > To unsubscribe from this group, send email to > algogeeks+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. >

Re: [algogeeks] Another maths problem

2011-03-17 Thread Anurag atri
> algogeeks+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. > -- Regards Anurag Atri -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to

Re: [algogeeks] [brain teaser ] 17march

2011-03-17 Thread Anurag atri
t;> To unsubscribe from this group, send email to >>> algogeeks+unsubscr...@googlegroups.com. >>> For more options, visit this group at >>> http://groups.google.com/group/algogeeks?hl=en. >>> >> >> >> >> -- >> thezeitgeistmovement.com

Re: [algogeeks] Print Hello

2011-03-16 Thread Anurag atri
lgogeeks+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. > > -- Regards Anurag Atri -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this