[algogeeks] New to the Group

2011-06-23 Thread Nitin Naresh
Hello To the Members of the group.

I am a so called Geek, So called because I do not have any IT,
Software  Web-Development Certification. My graduation is B.Tech in
Biotechnology, Still IT, WEB  Software are my passion.

I just joined your group and felt atleast out of courtesy I may say
Hello to all the group member.

I have a very very small web-development company and right now we are
moving ahead towards software development, erp solutions and crm
solutions.

I would try my level best to take active parts in your discussion.

with warm regards

-- 
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: If any one have algorithms for interviews by adnan aziz ebook... Please mail ...

2011-05-05 Thread naresh kumar
Pleas mail to me also...
naresh.sac...@gmail.com
Thanks in advance

On Fri, May 6, 2011 at 1:46 AM, Ashish Modi ashishrmod...@gmail.com wrote:

 Hello,
 Can  you please mail me ashishrmod...@gmail.com

 Thanks in advance

 --
 With Regards
 Ashish

 --
 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] find the number.

2010-12-11 Thread Naresh A
Given range of numbers between A and B (A= B)
Find the number within given range which has more number of iterations as
per the following

 n { stop ; return iteration number }  if n=1;
 n = 3n+1  if n is odd
 n =  n/2  if n is even

for eg :

n=3 odd

n=10;
n=5;
n=16;
n=8;
n=4;
n=2;
n=1;

iterations : 7

-- 
*
Time complexity= (n^2)


*
*NARESH ,A*
**

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algoge...@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.