[algogeeks] Sudoku Solver

2011-12-06 Thread Vishnutej
Can anyone tell me how to write a generic code for any board size of sudoku?
I mean we can write code for a normal 9x9 sudoku board..What about 
16x16,25x25...??

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/algogeeks/-/zO2ckkkp5FQJ.
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] Algorithmic Pioneers

2011-06-24 Thread Vishnutej Mylavarapu
You can add AC Rush too..

On Fri, Jun 24, 2011 at 11:27 AM, rajeev bharshetty rajeevr...@gmail.comwrote:

 @ankit Thanks for the suggestion , I ahve Updated to include petr Mitrichev
 :)


 On Fri, Jun 24, 2011 at 11:19 AM, ankit sablok ankit4...@gmail.comwrote:

 very nice man nice collection add Petr Mitrichev to this collection


 On Fri, Jun 24, 2011 at 11:14 AM, rShetty rajeevr...@gmail.com wrote:

 Collection of Algorithmic Pioneers can be Found here


 http://openprobe.blogspot.com/2011/06/pioneers-in-algorithm-deisgn-and.html

 Suggestion for addition of more Pioneers are welcome .

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


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




-- 

*-Vishnutej Mylavarapu.*

-- 
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] EOF in Python for SPOJ

2011-05-25 Thread Vishnutej
Hello everyone,

I'm new to python.How can I check the EOF for inputs in SPOJ?

Thanks in advance!!

-Vishnutej

-- 
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] EOF in Python for SPOJ

2011-05-25 Thread Vishnutej Mylavarapu
Thnx a lot abhijith..

Do you have any links for tutorials for beginners?

On Wed, May 25, 2011 at 8:42 PM, abhijith reddy abhijith200...@gmail.comwrote:

 while(1):
try:
  # code
  #
  #
except EOFError: break



 On Wed, May 25, 2011 at 8:41 PM, Vishnutej mylavarapu.vishnu...@gmail.com
  wrote:

 Hello everyone,

 I'm new to python.How can I check the EOF for inputs in SPOJ?

 Thanks in advance!!

 -Vishnutej

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




-- 

*-Vishnutej Mylavarapu.*

WebRep
Overall rating

-- 
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] EOF in Python for SPOJ

2011-05-25 Thread Vishnutej Mylavarapu
What are the cases for which I might get NZEC??

On Wed, May 25, 2011 at 9:13 PM, Aman (neshu) Agarwal 
neshuagarwal1...@gmail.com wrote:


 do not forget to import sys


 import sys

 for line in sys.stdin:
 print line,
 print eof


 On Wed, May 25, 2011 at 9:12 PM, Aman (neshu) Agarwal 
 neshuagarwal1...@gmail.com wrote:

 for line in sys.stdin:
 print line,
 print eof


 --
 Aman Agarwal





 --
 Aman Agarwal


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




-- 

*-Vishnutej Mylavarapu.*

WebRep
Overall rating

-- 
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] MATLAB

2011-04-17 Thread Vishnutej
Can anyone send the resources to learn MATLAB?
Thanks in advance.

-Vishnutej.Mylavarapu

-- 
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] ONLY FOR MEN

2011-04-08 Thread Vishnutej Mylavarapu
Hello,
I dont think this is the right place for u to post these kinda things.
Also,if the admin of this group is still active,kindly delete this user from
the group.
Thnx.
-Vishnutej

On Fri, Apr 8, 2011 at 4:04 PM, Manikanta Babu manikantabab...@gmail.comwrote:

 Hello Sunitha,

 Can you please stop posting these kind of things into this google group.
 Please go to some other appropriate group.

 Thanks,
 Mani

 On Fri, Apr 8, 2011 at 3:56 PM, SUNITHA BUSETTY sunitha.buse...@gmail.com
  wrote:

   hot lipkiss
 http://hotactressstoyou.blogspot.com/2011/04/lipkiss-2.html
   lipkiss in without dress
 http://hotactressstoyou.blogspot.com/2011/04/lipkiss.html
seepika padukone sexy back look
 http://hotactressstoyou.blogspot.com/2011/04/deepika-padukone.html
   sexy katrina kaif
 http://hotactressstoyou.blogspot.com/2011/04/katrina-kaif.html
beauty keerthi chawla
 http://hotactressstoyou.blogspot.com/2011/04/keerthi-chawla.html
   saloni sexy photos
 http://hotactressstoyou.blogspot.com/2011/04/saloni.html
 deeksha seth in a hot saree
 http://hotactressstoyou.blogspot.com/2011/04/deeksha-seth.html
 asin hot wallpapers
 http://hotactressstoyou.blogspot.com/2011/04/asin.html
ramba in a red dress
 http://hotactressstoyou.blogspot.com/2011/04/ramba.html
  sexy ilieana is in scert
 http://hotactressstoyou.blogspot.com/2011/04/ileana.html

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




 --
 Thanks  Regards,
 Mani
 http://www.sanidapa.com - The music Search engine

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




-- 

*-Vishnutej Mylavarapu.*

-- 
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] nzec

2011-03-16 Thread Vishnutej Mylavarapu
It specifies NON ZERO EXIT CODE.
Basically it occurs when you dont return 0 in ur code.

On Thu, Mar 17, 2011 at 12:25 AM, Rahul Mittal rahulmitta...@gmail.comwrote:

 can anyone help me with NZEC errorwhat it is ,how to find and
 remove 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.




-- 

*-Vishnutej Mylavarapu.*

-- 
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] Python tutorials required.

2011-03-15 Thread Vishnutej
Hello everyone.

I'm going to start learning PYTHON. If anyone knows the links or books
of the basics,kindly lemme know.

Thanks in advance.

-Vishnutej.Mylavarapu

-- 
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] spoj problem - INFINITY

2011-03-04 Thread Vishnutej Mylavarapu
Its working fine on the compiler I use (dev cpp)..but is giving WA on spoj

On Fri, Mar 4, 2011 at 6:34 AM, D.N.Vishwakarma@IITR deok...@gmail.comwrote:

 *which compiler you r using?
 *
 On Fri, Mar 4, 2011 at 12:15 AM, Vishnutej Mylavarapu 
 mylavarapu.vishnu...@gmail.com wrote:

 When I submit..Im getting a WA

 On Thu, Mar 3, 2011 at 11:55 PM, D.N.Vishwakarma@IITR 
 deok...@gmail.comwrote:

 *this code is perfectly working . use gcc based compiler
 *

 On Thu, Mar 3, 2011 at 11:34 PM, Vishnutej 
 mylavarapu.vishnu...@gmail.com wrote:

 I dunno y dis code isnt working.

 #includeiostream
 #includelimits
 using namespace std;
 int main()
 {
 coutnumeric_limitslong double::infinity();
 }


 Thnx in advance.


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




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




 --

 *-Vishnutej Mylavarapu.*

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




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




-- 

*-Vishnutej Mylavarapu.*

-- 
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] spoj problem - INFINITY

2011-03-03 Thread Vishnutej
I dunno y dis code isnt working.

#includeiostream
#includelimits
using namespace std;
int main()
{
coutnumeric_limitslong double::infinity();
}


Thnx in advance.


-- 
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] spoj problem - INFINITY

2011-03-03 Thread Vishnutej Mylavarapu
When I submit..Im getting a WA

On Thu, Mar 3, 2011 at 11:55 PM, D.N.Vishwakarma@IITR deok...@gmail.comwrote:

 *this code is perfectly working . use gcc based compiler
 *

 On Thu, Mar 3, 2011 at 11:34 PM, Vishnutej mylavarapu.vishnu...@gmail.com
  wrote:

 I dunno y dis code isnt working.

 #includeiostream
 #includelimits
 using namespace std;
 int main()
 {
 coutnumeric_limitslong double::infinity();
 }


 Thnx in advance.


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




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




-- 

*-Vishnutej Mylavarapu.*

-- 
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] can i know the best way to learn programming??

2011-02-02 Thread Vishnutej Mylavarapu
They are online judges and they host many competitions.

On Wed, Feb 2, 2011 at 10:13 PM, SANDEEP AAMIN sandeep.aa...@gmail.comwrote:

 thnxs guys for ur kind advices,
 can i know what is spoj, topcoder?   because i am getting into coding first
 time



 On Wed, Feb 2, 2011 at 9:21 PM, Abhishek Sharma jkabhishe...@gmail.comwrote:

 dude... Practice is the only solution to ur problem...

 U can try any one of the following: topcoder, spoj, (already mentioned in
 the thread) codechef etc...

 U can also refer to previous posts in this group and try to code those
 problems on your own and then refer to the solutions to check where you can
 improve..U can always come back to us in case of any difficulty..

 Happy Coding :)


  --
 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.comalgogeeks%2bunsubscr...@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.comalgogeeks%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 

*-Vishnutej Mylavarapu.*

-- 
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] SIGSEV in FCTRL4 on SPOJ

2010-10-21 Thread Vishnutej
Hello all,

I tried to submit this FCTRL4 problem on SPOJ..Its giving me right
answer in my system,but I'm getiing SIGSEV runtime error when I
submit.Here's my code.plz lemme know if there's anything wrong and
also any optimizations.

#includeiostream
#includecstdio
#includecstdlib
using namespace std;
int a[200];
int main()
{
int N,x,i,no,m,temp,k;
while(1)
{
 scanf(%d,N);
 if(N==EOF)
 exit(0);
 a[0]=1;
 m=1;
 i=1;
 while(i=N)
 {
 k=0;
 temp=0;
 while(km)
 {
 x=a[k]*i+temp;
 a[k]=x%10;
 temp=x/10;
 k++;
 }
 while(temp!=0)
 {
   m++;
   a[m-1]=temp%10;
   temp/=10;
 }
 i++;
 }
 for(int j=0;j=m-1;j++)
 if(a[j]!=0)
 {
 printf(%d,a[j]);
 break;
 }
 printf(\n);
}
}









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



Re: [algogeeks] spoj problem - LASTDIG

2010-10-15 Thread Vishnutej Mylavarapu
Thnx a lott

-Vishnutej.M

On Fri, Oct 15, 2010 at 6:41 PM, VENKATARAMAN.GB venki.g...@gmail.comwrote:

 It means the size of your source code should be  = 700 Bytes.
 Try removing tabs and spaces, redeclare vars into smaller variable names or
 prefer a different language whose syntax is simpler and smaller. Say python.

Cheers,
 venki

 VENKATARAMAN.GB
 If Its Upto Be, It Is Upto Me


 On Fri, Oct 15, 2010 at 1:55 PM, Vishnutej mylavarapu.vishnu...@gmail.com
  wrote:

 Hello everyone..

 I tried solving the last digit problem in spoj but I'm getting an
 error that that the max limit is 700 bytes.

 What does this mean??..the problem specifies that the source limit is
 700 B.

 I get the same thing when I try to solve KAMIL in challenge probs of
 SPOJ.

 Thanks in advance..

 -Vishnutej Mylavarapu

 --
 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.comalgogeeks%2bunsubscr...@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 algoge...@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.comalgogeeks%2bunsubscr...@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 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.