Re: [algogeeks] Re: Square of Large integer

2011-04-28 Thread hary rathor
bro u r currect but what happen when result exceed greater then integer
range?
here sq variable is not bery large

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



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

2011-04-28 Thread Logic King
@utkarsh that's very rude...you can't say about anyone like this.who
knows you may be writing the man pages in the future :P

On Thu, Apr 28, 2011 at 10:21 AM, UTKARSH SRIVASTAV usrivastav...@gmail.com
 wrote:



 i think mca students need to first study and then try to answer people like
 saurabh(.bashrc) and kaml is really not innocent but a cheater and this is
 really a disgrace to anyone remotely related with coding .All the MCA guys
 supporting them you should leave coding and should write man pages to b-tech
 students and documentations for notepad..

 --
 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, 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, 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.



[algogeeks] [brain teaser ] anagram riddle 28 april

2011-04-28 Thread Lavesh Rawat
* anagram riddle

 Below are 3 anagrams of holidays. Can you figure them out?

1. Charm sits
2. Art see
3. Ale hen low

*
*Update Your Answers at* : Click
Herehttp://dailybrainteaser.blogspot.com/2011/04/anagram-riddle-28-april.html?lavesh=lavesh

Solution:
Will be updated after 1 day



-- 

Never explain yourself. Your friends don’t need it and
your enemies won’t believe it .

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Fwd: Problems

2011-04-28 Thread D.N.Vishwakarma@IITR
*
*


*Just give some time to these problems and solve it. Its sort of Urgent.And
Let me know the Solution.
*

1.   Write an algorithm to implement a stack using a two dimensional
array.

2.  Write an algorithm to store elements of a two-dimensional array in a
simple stack.


3.  You are in a rectangular area having one entry and one exit. The
Entrance is at the upper-left corner and the exit is at the lower-right
corner. The interior of the maze contains walls or obstacles that you can
not walk through. These obstacles are placed along rows and columns that are
parallel to the rectangular boundary of the maze. You can move north, south,
east or west neighboring positions.
  Write an algorithm to find a path from entrance to exit using
Stack data   structure.

4.Bob has a set A of n nuts and a set B of n bolts such that each
nut in A has a unique matching bolt in B. Unfortunately, the nuts in A all
look the same, and the bolts in B all look the same as well. The only kind
of a comparison that Bob can make is to take a nut-bolt pair (a,b), such
that a belongs to A and B belongs to B, and test it to see if the threads of
a are larger, smaller or a perfect match with the threads of B. Describe an
efficient algorithm for Bob to match up all his nuts and bolts.

 5.   A   3 –ary tree consists of two data fields: name and Age. Design
an algorithm for viewing the contents of all even numbered levels starting
from last-level. In a level display all nodes from right to left. Root is at
level 0.


Thank You...






-- 
**With Regards
Deoki Nandan Vishwakarma
IITR MCA
Mathematics Department*
*

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] [brain teaser ] anagram riddle 28 april

2011-04-28 Thread abhishek jain
This one is quite easy.

Christmas
Easter
Helloween

Thanks,
Abhishek

On Thu, Apr 28, 2011 at 1:22 PM, Lavesh Rawat lavesh.ra...@gmail.comwrote:

 * anagram riddle

  Below are 3 anagrams of holidays. Can you figure them out?

 1. Charm sits
 2. Art see
 3. Ale hen low

 *
 *Update Your Answers at* : Click 
 Herehttp://dailybrainteaser.blogspot.com/2011/04/anagram-riddle-28-april.html?lavesh=lavesh

 Solution:
 Will be updated after 1 day



 --

 Never explain yourself. Your friends don’t need it and
 your enemies won’t believe it .

 --
 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, 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, 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] Re: Square of Large integer

2011-04-28 Thread jai gupta
Hi hary,
when do you think that there can be problem? The sq is never made to store a
value  10^9 (for previous sq) +9*10^9 (for new sum)
hence the sum never exceeds 10^10 which is under the range of int.

Correct me if i go wrong somewhere.

On Thu, Apr 28, 2011 at 12:26 PM, hary rathor harry.rat...@gmail.comwrote:

 bro u r currect but what happen when result exceed greater then integer
 range?
 here sq variable is not bery large

  --
 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, 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, 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] Re: imporatnt(need help)

2011-04-28 Thread vaibhav shukla
@uttam : buddy u better stay quiet.The person for who u r talking is a lot
better coder than you.that help he asked for was not just to clear topcoder
but for some other imp reason.Anyways u wont understand coz  whatever u said
in last post signifies that you yourself dont understand coding and also
coders.Better not challenge anyone ok.

On Thu, Apr 28, 2011 at 1:08 PM, Logic King crazy.logic.k...@gmail.comwrote:

 @utkarsh that's very rude...you can't say about anyone like
 this.who knows you may be writing the man pages in the future :P


 On Thu, Apr 28, 2011 at 10:21 AM, UTKARSH SRIVASTAV 
 usrivastav...@gmail.com wrote:



 i think mca students need to first study and then try to answer people
 like saurabh(.bashrc) and kaml is really not innocent but a cheater and this
 is really a disgrace to anyone remotely related with coding .All the MCA
 guys supporting them you should leave coding and should write man pages to
 b-tech students and documentations for notepad..

 --
 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, 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, 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.




-- 
  best wishes!!
Vaibhav Shukla
DU-MCA

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



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

2011-04-28 Thread vaibhav shukla
@utkarsh : buddy u better stay quiet.The person for who u r talking is a lot
better coder than you.that help he asked for was not just to clear topcoder
but for some other imp reason.Anyways u wont understand coz  whatever u said
in last post signifies that you yourself dont understand coding and also
coders.Better not challenge anyone ok.

On Thu, Apr 28, 2011 at 1:08 PM, Logic King crazy.logic.k...@gmail.comwrote:

 @utkarsh that's very rude...you can't say about anyone like
 this.who knows you may be writing the man pages in the future :P


 On Thu, Apr 28, 2011 at 10:21 AM, UTKARSH SRIVASTAV 
 usrivastav...@gmail.com wrote:



 i think mca students need to first study and then try to answer people
 like saurabh(.bashrc) and kaml is really not innocent but a cheater and this
 is really a disgrace to anyone remotely related with coding .All the MCA
 guys supporting them you should leave coding and should write man pages to
 b-tech students and documentations for notepad..

 --
 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, 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, 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.




-- 
  best wishes!!
Vaibhav Shukla
DU-MCA

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



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

2011-04-28 Thread aditya pratap
@utkarsh : By the way from which institute u belong??

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



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

2011-04-28 Thread UTKARSH SRIVASTAV
ok sorry i think i have said a lot and we should try to stop this right now
and maintain the decorum of group...

On Thu, Apr 28, 2011 at 6:59 AM, aditya pratap
contacttoadity...@gmail.comwrote:

 @utkarsh : By the way from which institute u belong??

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
*UTKARSH SRIVASTAV
CSE-3
B-Tech 2nd Year
@MNNIT 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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



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

2011-04-28 Thread vaibhav shukla
@utkarsh : thats like a good boy!!! :D

On Thu, Apr 28, 2011 at 7:40 PM, UTKARSH SRIVASTAV
usrivastav...@gmail.comwrote:

 ok sorry i think i have said a lot and we should try to stop this right now
 and maintain the decorum of group...


 On Thu, Apr 28, 2011 at 6:59 AM, aditya pratap 
 contacttoadity...@gmail.com wrote:

 @utkarsh : By the way from which institute u belong??

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 *UTKARSH SRIVASTAV
 CSE-3
 B-Tech 2nd Year
 @MNNIT 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
  best wishes!!
Vaibhav Shukla
DU-MCA

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



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

2011-04-28 Thread UTKARSH SRIVASTAV
But i am a BAD boy.

On Thu, Apr 28, 2011 at 7:48 PM, vaibhav shukla vaibhav200...@gmail.comwrote:

 @utkarsh : thats like a good boy!!! :D


 On Thu, Apr 28, 2011 at 7:40 PM, UTKARSH SRIVASTAV 
 usrivastav...@gmail.com wrote:

 ok sorry i think i have said a lot and we should try to stop this right
 now and maintain the decorum of group...


 On Thu, Apr 28, 2011 at 6:59 AM, aditya pratap 
 contacttoadity...@gmail.com wrote:

 @utkarsh : By the way from which institute u belong??

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 *UTKARSH SRIVASTAV
 CSE-3
 B-Tech 2nd Year
 @MNNIT 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
   best wishes!!
 Vaibhav Shukla
 DU-MCA

  --
 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, 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, 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] Re: imporatnt(need help)

2011-04-28 Thread vaibhav shukla
@utkarsh : that we've came to know from your last to last
post...Anyways..stay cool

On Thu, Apr 28, 2011 at 7:52 PM, UTKARSH SRIVASTAV
usrivastav...@gmail.comwrote:

 But i am a BAD boy.


 On Thu, Apr 28, 2011 at 7:48 PM, vaibhav shukla 
 vaibhav200...@gmail.comwrote:

 @utkarsh : thats like a good boy!!! :D


 On Thu, Apr 28, 2011 at 7:40 PM, UTKARSH SRIVASTAV 
 usrivastav...@gmail.com wrote:

 ok sorry i think i have said a lot and we should try to stop this right
 now and maintain the decorum of group...


 On Thu, Apr 28, 2011 at 6:59 AM, aditya pratap 
 contacttoadity...@gmail.com wrote:

 @utkarsh : By the way from which institute u belong??

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 *UTKARSH SRIVASTAV
 CSE-3
 B-Tech 2nd Year
 @MNNIT 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
   best wishes!!
 Vaibhav Shukla
 DU-MCA

  --
 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, 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, 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.




-- 
  best wishes!!
Vaibhav Shukla
DU-MCA

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



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

2011-04-28 Thread Anil Arya
utkarsh is saying right,,,he is a vary bad boy...

On Thu, Apr 28, 2011 at 7:52 PM, UTKARSH SRIVASTAV
usrivastav...@gmail.comwrote:

 But i am a BAD boy.


 On Thu, Apr 28, 2011 at 7:48 PM, vaibhav shukla 
 vaibhav200...@gmail.comwrote:

 @utkarsh : thats like a good boy!!! :D


 On Thu, Apr 28, 2011 at 7:40 PM, UTKARSH SRIVASTAV 
 usrivastav...@gmail.com wrote:

 ok sorry i think i have said a lot and we should try to stop this right
 now and maintain the decorum of group...


 On Thu, Apr 28, 2011 at 6:59 AM, aditya pratap 
 contacttoadity...@gmail.com wrote:

 @utkarsh : By the way from which institute u belong??

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 *UTKARSH SRIVASTAV
 CSE-3
 B-Tech 2nd Year
 @MNNIT 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
   best wishes!!
 Vaibhav Shukla
 DU-MCA

  --
 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, 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, 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.




-- 
*Anil Kumar Arya*
*B.Tech  II year*
*computer science  engineering*
*M.N.N.I.T 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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



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

2011-04-28 Thread Anil Arya
Utkarsh is saying right..he is really a very bad boy...don't
take panga with him

On Thu, Apr 28, 2011 at 7:52 PM, UTKARSH SRIVASTAV
usrivastav...@gmail.comwrote:

 But i am a BAD boy.


 On Thu, Apr 28, 2011 at 7:48 PM, vaibhav shukla 
 vaibhav200...@gmail.comwrote:

 @utkarsh : thats like a good boy!!! :D


 On Thu, Apr 28, 2011 at 7:40 PM, UTKARSH SRIVASTAV 
 usrivastav...@gmail.com wrote:

 ok sorry i think i have said a lot and we should try to stop this right
 now and maintain the decorum of group...


 On Thu, Apr 28, 2011 at 6:59 AM, aditya pratap 
 contacttoadity...@gmail.com wrote:

 @utkarsh : By the way from which institute u belong??

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 *UTKARSH SRIVASTAV
 CSE-3
 B-Tech 2nd Year
 @MNNIT 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
   best wishes!!
 Vaibhav Shukla
 DU-MCA

  --
 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, 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, 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.




-- 
*Anil Kumar Arya*
*B.Tech  II year*
*computer science  engineering*
*M.N.N.I.T 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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



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

2011-04-28 Thread UTKARSH SRIVASTAV
hi my id is hacked from a long time only the sorry post was from me
..the  FIRST post and the bad boy post was from LOGIC KING(Amol) and he
replied to his own post posted by my e-mail ...any person can
understand   that my id is hacked by the intentions of the post that were
posted

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Problem regarding MySql server Installation

2011-04-28 Thread Aniket
I was trying to install mysql 5.5. in Windows XP.After installation
during configuration phase when there was to apply security settings I
m always getting an error

Error No 1045
Access Denied for user 'root'@localhost(using password: NO).

I have tried all possibilities in Firewall but it dint work.Hope
anybody here will help me out of this problem.I am totally screwed
up!!!

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Problem regarding MySql server Installation

2011-04-28 Thread shashi kant
try this http://www.fixya.com/support/t840251-mysql_error_messeage



On Fri, Apr 29, 2011 at 12:34 AM, Aniket aniket...@gmail.com wrote:

 I was trying to install mysql 5.5. in Windows XP.After installation
 during configuration phase when there was to apply security settings I
 m always getting an error

 Error No 1045
 Access Denied for user 'root'@localhost(using password: NO).

 I have tried all possibilities in Firewall but it dint work.Hope
 anybody here will help me out of this problem.I am totally screwed
 up!!!

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
*Shashi Kant *
***Think positive and find fuel in failure*
*+919002943948*
Final Yr. Cse ,Undergraduate Student,
*National Institute Of Technology Durgapur.*

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Problem regarding MySql server Installation

2011-04-28 Thread shashi kant
http://forums.mysql.com/read.php?11,278745,278745
this works  for me will work for you too
http://forums.mysql.com/read.php?11,278745,278745

On Fri, Apr 29, 2011 at 8:34 AM, shashi kant shashiski...@gmail.com wrote:

 try this http://www.fixya.com/support/t840251-mysql_error_messeage



 On Fri, Apr 29, 2011 at 12:34 AM, Aniket aniket...@gmail.com wrote:

 I was trying to install mysql 5.5. in Windows XP.After installation
 during configuration phase when there was to apply security settings I
 m always getting an error

 Error No 1045
 Access Denied for user 'root'@localhost(using password: NO).

 I have tried all possibilities in Firewall but it dint work.Hope
 anybody here will help me out of this problem.I am totally screwed
 up!!!

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 *Shashi Kant *
 ***Think positive and find fuel in failure*
 *+919002943948*
 Final Yr. Cse ,Undergraduate Student,
 *National Institute Of Technology Durgapur.*





-- 
*Shashi Kant *
***Think positive and find fuel in failure*
*+919002943948*
Final Yr. Cse ,Undergraduate Student,
*National Institute Of Technology Durgapur.*

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.