Re: [algogeeks] Missing Number in an array

2011-07-18 Thread Aakash Johari
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. -- -Aakash Johari (IIIT Allahabad) -- You received this message

Re: [algogeeks] Missing Number in an array

2011-07-18 Thread Aakash Johari
Yes, you will have to write a quad eq. solver. It's easy to write. On Mon, Jul 18, 2011 at 5:13 AM, Aakash Johari aakashj@gmail.comwrote: @varun: can you write the code for one? On Mon, Jul 18, 2011 at 5:11 AM, varun pahwa varunpahwa2...@gmail.comwrote: The above solution will work

Re: [algogeeks] microsoft ques

2011-07-12 Thread Aakash Johari
+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email

Re: [algogeeks] Re: puzzle

2011-07-06 Thread Aakash Johari
to algogeeks+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email

Re: [algogeeks] Re: puzzle

2011-07-06 Thread Aakash Johari
How AP(ans=14) solution is satisfying the constraints? -- 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

Re: [algogeeks] Unique substring

2011-07-05 Thread Aakash Johari
this group, send email to algogeeks+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post

Re: [algogeeks] Unique substring

2011-07-05 Thread Aakash Johari
-unique-substring-from-a-string-google On Tue, Jul 5, 2011 at 3:15 PM, Aakash Johari aakashj@gmail.comwrote: Please make problem clear with example. Longest unique substring is the string itself, or i have misunderstood the problem. On Mon, Jul 4, 2011 at 11:53 PM, Navneet Gupta navneetn

Re: [algogeeks] Re: Scheduling dp problem - MSFT interview

2011-06-08 Thread Aakash Johari
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. -- -Aakash Johari (IIIT Allahabad) -- You received

Re: [algogeeks] Scheduling

2011-06-07 Thread Aakash Johari
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.google.com/group/algogeeks?hl=en. -- -Aakash

Re: [algogeeks] Re: Array Merge Problem

2011-06-06 Thread Aakash Johari
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.google.com/group/algogeeks?hl=en. -- -Aakash Johari

Re: [algogeeks] Efficient Recursion algorithm for Fibonacci series.

2011-06-06 Thread Aakash Johari
. 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. -- -Aakash Johari (IIIT Allahabad) -- You received

Re: [algogeeks] remove duplicate chars in a string without using extra memory

2011-06-03 Thread Aakash Johari
PM, Aakash Johari aakashj@gmail.comwrote: It was given that one or two extra variables are allowed. So I used a variable instead for mapping. It is simply mapping of each character in alphabet to a bit in the variable. On Thu, Jun 2, 2011 at 7:10 AM, Ashish Goel ashg...@gmail.com wrote

Re: [algogeeks] remove duplicate chars in a string without using extra memory

2011-06-03 Thread Aakash Johari
@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. -- -Aakash Johari (IIIT Allahabad) -- You received this message because you are subscribed to the Google

Re: [algogeeks] Re: Array Merge Problem

2011-06-03 Thread Aakash Johari
to algogeeks+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email

Re: [algogeeks] MS question

2011-06-02 Thread Aakash Johari
. -- -Aakash Johari (IIIT Allahabad) -- 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 more

Re: [algogeeks] remove duplicate chars in a string without using extra memory

2011-06-02 Thread Aakash Johari
+919966006652 On Sat, May 28, 2011 at 12:23 PM, Aakash Johari aakashj@gmail.comwrote: Following code works for [A-Za-z], can be extended for whole character-set : #include stdio.h int main() { unsigned long long int a = 0; char str[50]; int i; scanf (%s, str); for ( i

Re: [algogeeks] Reversing a string

2011-05-31 Thread Aakash Johari
+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email

Re: [algogeeks] Re: A Graph Problem

2011-05-30 Thread Aakash Johari
/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- 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: Finding Blocks in a matrix

2011-05-30 Thread Aakash Johari
. -- -Aakash Johari (IIIT Allahabad) -- 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 more options

Re: [algogeeks] Re: Finding Blocks in a matrix

2011-05-30 Thread Aakash Johari
, will that not be O(n3)?? Clarify if i am wrong. On May 30, 9:52 am, Aakash Johari aakashj@gmail.com wrote: At the each level, traversed by BFS, you will have to check whether the vertex in this level has the element same as it found in the previous level. If it is different, then count

Re: [algogeeks] Re: A Graph Problem

2011-05-30 Thread Aakash Johari
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. -- -Aakash Johari (IIIT Allahabad

Re: [algogeeks] Re: A Graph Problem

2011-05-30 Thread Aakash Johari
will be the number of rooms required. On Sun, May 29, 2011 at 11:29 PM, Aakash Johari aakashj@gmail.comwrote: yes, sorry.. i misunderstood the problem. On Sun, May 29, 2011 at 11:24 PM, anshu mishra anshumishra6...@gmail.comwrote: biaprtie graph is special case when we can color

Re: [algogeeks] Re: A Graph Problem

2011-05-30 Thread Aakash Johari
No, won't work. :( On Sun, May 29, 2011 at 11:39 PM, Aakash Johari aakashj@gmail.comwrote: Can this solution work? Create adjacency matrix where adj[i][j] representing person i doesnt like person j. Now toggle the relations (means now the adj[i][j] will represent person i and person j

Re: [algogeeks] Binary Tree Problem

2011-05-30 Thread Aakash Johari
to algogeeks+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send

Re: [algogeeks] Re: Finding Blocks in a matrix

2011-05-29 Thread Aakash Johari
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.google.com/group/algogeeks?hl=en. -- -Aakash

Re: [algogeeks] remove duplicate chars in a string without using extra memory

2011-05-28 Thread Aakash Johari
at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- 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

Re: [algogeeks] SPOJ Problem Help

2011-05-28 Thread Aakash Johari
, 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. -- -Aakash Johari (IIIT Allahabad) -- You received this message because you

Re: [algogeeks] Re: sum of two

2011-05-27 Thread Aakash Johari
, sukhmeet singh sukhmeet2...@gmail.comwrote: @Dave nd @Akash can u explain a bit more.. I didn't get what u say.. Inserting in a map takes O(log n) time !! On Fri, May 20, 2011 at 8:35 PM, Aakash Johari aakashj@gmail.comwrote: @Dave: This is what is still a doubt to me. I have searched

Re: [algogeeks] Re: sum of two

2011-05-27 Thread Aakash Johari
...!! isn't ?? On Fri, May 27, 2011 at 2:16 PM, bhavana bhavana@gmail.comwrote: can be solved easily if the elements of the array lie in a limited range which can b known beforehand...!! On Fri, May 27, 2011 at 2:10 PM, Aakash Johari aakashj@gmail.com wrote: yes, you are right. map

Re: [algogeeks] Re: sum of two

2011-05-27 Thread Aakash Johari
the sequence 1, 4, 9, 16, 25, ..., n^2? On Fri, May 27, 2011 at 2:44 PM, Aakash Johari aakashj@gmail.comwrote: @sukhmeet: could you get my approach? it was same as Bhavana explained. On Fri, May 27, 2011 at 2:12 AM, bhavana bhavana@gmail.com wrote: hehe...d difference is regarding

Re: [algogeeks] Re: suitable data structure

2011-05-27 Thread Aakash Johari
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. -- -Aakash Johari (IIIT Allahabad) -- You received this message

Re: [algogeeks] Re: strings

2011-05-27 Thread Aakash Johari
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. -- -Aakash Johari (IIIT Allahabad

Re: [algogeeks] one constructor problem

2011-05-27 Thread Aakash Johari
Provide some default value to the parameterized constructor. * A(int m = 0) { a = m; } * On Fri, May 27, 2011 at 4:36 AM, D.N.Vishwakarma@IITR deok...@gmail.comwrote: without default constructor what will be solution On Wed, May 25, 2011 at 10:56 AM, Aakash Johari aakashj

Re: [algogeeks] Puzzle

2011-05-27 Thread Aakash Johari
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. -- -Aakash Johari (IIIT Allahabad) -- You

Re: [algogeeks] Google Interview Question

2011-05-27 Thread Aakash Johari
, visit this group at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- 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

Re: [algogeeks] Re: sum of two

2011-05-27 Thread Aakash Johari
@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. -- -Aakash Johari (IIIT Allahabad) -- You received this message because you are subscribed

Re: [algogeeks] C++ problem..

2011-05-25 Thread Aakash Johari
. -- -Aakash Johari (IIIT Allahabad) -- 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] Edit distance

2011-05-25 Thread Aakash Johari
Sorry, it can't be because of the preferences :(... On Tue, May 24, 2011 at 11:07 PM, Aakash Johari aakashj@gmail.comwrote: I think, it is because of the preference of operations. I have also implemented it and it's returning 5. Try for some modifications in the algorithm. On Tue, May

Re: [algogeeks] C++ problem..

2011-05-25 Thread Aakash Johari
, send email to algogeeks+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post

Re: [algogeeks] Edit distance

2011-05-25 Thread Aakash Johari
Johari aakashj@gmail.comwrote: Sorry, it can't be because of the preferences :(... On Tue, May 24, 2011 at 11:07 PM, Aakash Johari aakashj@gmail.comwrote: I think, it is because of the preference of operations. I have also implemented it and it's returning 5. Try for some

Re: [algogeeks] Arrays

2011-05-25 Thread Aakash Johari
=en. -- -Aakash Johari (IIIT Allahabad) -- 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] Re: Spoj Problem Help

2011-05-24 Thread Aakash Johari
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. -- -Aakash Johari (IIIT Allahabad) -- You received this message

Re: [algogeeks] Re: AMAZON Q

2011-05-24 Thread Aakash Johari
email to algogeeks+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post

Re: [algogeeks] Re: AMAZON Q

2011-05-24 Thread Aakash Johari
if u have many test cases, this approach is helpful. On Tue, May 24, 2011 at 6:42 AM, Piyush Sinha ecstasy.piy...@gmail.comwrote: its equal to calculating the Fibonacci numbers till we get a number which is closest to and lesser than N...anything better?? On 5/24/11, Aakash Johari aakashj

Re: [algogeeks] Re: AMAZON Q

2011-05-24 Thread Aakash Johari
/11, Aakash Johari aakashj@gmail.com wrote: if u have many test cases, this approach is helpful. On Tue, May 24, 2011 at 6:42 AM, Piyush Sinha ecstasy.piy...@gmail.comwrote: its equal to calculating the Fibonacci numbers till we get a number which is closest to and lesser than N

Re: [algogeeks] Re: AMAZON Q

2011-05-24 Thread Aakash Johari
://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- 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

Re: [algogeeks] Re: AMAZON Q

2011-05-24 Thread Aakash Johari
this group, send email to algogeeks+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group

Re: [algogeeks] Re: AMAZON Q

2011-05-24 Thread Aakash Johari
at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- 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: AMAZON Q

2011-05-24 Thread Aakash Johari
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. -- -Aakash Johari (IIIT

Re: [algogeeks] Re:

2011-05-24 Thread Aakash Johari
/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- 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] C++ problem..

2011-05-24 Thread Aakash Johari
=en. -- -Aakash Johari (IIIT Allahabad) -- 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] Edit distance

2011-05-24 Thread Aakash Johari
+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email

Re: [algogeeks] one constructor problem

2011-05-24 Thread Aakash Johari
://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- 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: Divide 2 nos. without DIVISON

2011-05-23 Thread Aakash Johari
; temp |= ((a mask) i) 1; result = 1; if ( temp = b ) { result |= 1; temp -= b; } } return result; } On Sun, May 22, 2011 at 10:56 PM, Aakash Johari aakashj

Re: [algogeeks] Spoj Problem Help

2011-05-23 Thread Aakash Johari
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. -- -Aakash Johari (IIIT

Re: [algogeeks] Re: Divide 2 nos. without DIVISON

2011-05-22 Thread Aakash Johari
this group, send email to algogeeks+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post

Re: [algogeeks] Spoj Problem Help

2011-05-22 Thread Aakash Johari
?hl=en. -- -Aakash Johari (IIIT Allahabad) -- 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] Re: Divide 2 nos. without DIVISON

2011-05-22 Thread Aakash Johari
@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. -- -Aakash Johari (IIIT Allahabad) -- -Aakash Johari (IIIT Allahabad) -- You received

Re: [algogeeks] Re: sum of two

2011-05-20 Thread Aakash Johari
. 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. -- -Aakash Johari (IIIT Allahabad) -- You received

Re: [algogeeks] Re: sum of two

2011-05-20 Thread Aakash Johari
/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- 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: sum of two

2011-05-20 Thread Aakash Johari
@Dave: I got you. I will have to check before pushing the element in map. On Fri, May 20, 2011 at 7:30 AM, Dave dave_and_da...@juno.com wrote: @Aakash: Yeah, but try the same array with sum = 6 and see what happens. Dave On May 20, 9:04 am, Aakash Johari aakashj@gmail.com wrote: int

Re: [algogeeks] Re: sum of two

2011-05-20 Thread Aakash Johari
) to map the sequence 1, 4, 9, 16, 25, ..., n^2? Dave On May 20, 9:39 am, Aakash Johari aakashj@gmail.com wrote: @Dave: I got you. I will have to check before pushing the element in map. On Fri, May 20, 2011 at 7:30 AM, Dave dave_and_da...@juno.com wrote: @Aakash: Yeah

Re: [algogeeks] Re: partitioning the array

2011-05-07 Thread Aakash Johari
. -- -Aakash Johari (IIIT Allahabad) -- 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 more

Re: [algogeeks] Re: imporatnt(need help)

2011-04-26 Thread Aakash Johari
, visit this group at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- 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

Re: [algogeeks] imporatnt(need help)

2011-04-26 Thread Aakash Johari
...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- 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

Re: [algogeeks] Cracking the IT interview: jump start your career with confidence

2011-04-25 Thread Aakash Johari
=en. -- -Aakash Johari (IIIT Allahabad) -- 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] Re: If any one have algorithms for interviews by adnan aziz ebook... Please mail ...

2011-04-24 Thread Aakash Johari
://groups.google.com/group/algogeeks?hl=en. -- -Aakash Johari (IIIT Allahabad) -- 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