Re: [gcj] Environment for gcj.

2013-03-13 Thread Lokesh Khandelwal
., Its practice that gets you going in it. On Wednesday, March 13, 2013, Pranav Kulkarni wrote: > this is really helpful. I have a question, as c, c++ are quiet more > efficient than java. Why do u prefer java? I mean same algo on c is > faster than in java. > > On 13/03/2013, Lokesh Kh

Re: [gcj] Environment for gcj.

2013-03-13 Thread Lokesh Khandelwal
gt; > three, bcoz of my acadamics. > > > > On 13/03/2013, Lokesh Khandelwal wrote: > >> Which language do u code in ? > >> > >> On Wednesday, March 13, 2013, Pranav Kulkarni wrote: > >> > >>> yeah, but my setup may be not good enough. I ha

Re: [gcj] Environment for gcj.

2013-03-13 Thread Lokesh Khandelwal
might be > using this was my curiosity? > > On 13/03/2013, Lokesh Khandelwal > > wrote: > > You can use absolutely any OS , any editor.All they need is the source > code > > and the output file. > > It is recommended to use that language in which you excel, and tha

Re: [gcj] Environment for gcj.

2013-03-13 Thread Lokesh Khandelwal
You can use absolutely any OS , any editor.All they need is the source code and the output file. It is recommended to use that language in which you excel, and that editor in which you practice the most. You can to the practice link and try solving some problems. I feel Introduction to Algorithms

Re: [gcj] matrix doubt .....

2012-08-05 Thread Lokesh Khandelwal
Simple..This two arrays are used to give directions.For i=0 you are telling it to move one position up.(x is incremented by 0 and y by 1) simlarly at i=1 to south , i=2 east and i=3 west On Saturday, August 4, 2012, Tejeshwar Singh wrote: > Can you please put the code where you saw this?? I want

Re: [gcj] Question

2012-08-05 Thread Lokesh Khandelwal
Cheating ... Shameful ..this is a running question on codechef.com http://www.codechef.com/AUG12/problems/DRANGE ..Please do not answer him On Monday, August 6, 2012, Luke Pebody wrote: > Instead of looking at the effect of these operations on the N numbers, > look at the effect of these operatio

Re: [gcj] How to change my handle name..

2012-03-20 Thread Lokesh Khandelwal
But I cannot change my nickname there On 3/20/12, khodadadeh wrote: >go to http://code.google.com/codejam/ > then click on "Update profile" at top of page ( right side). > you can change your info there! > > On 3/20/2012 00:57, Lokesh Khandelwal wrote: >&

[gcj] How to change my handle name..

2012-03-19 Thread Lokesh Khandelwal
I registered in GCJ 2011 as phantom11 but this time I wish to change that...but the form autofills and I have to on options to change it...Please someone tell me how to change the handle name -- You received this message because you are subscribed to the Google Groups "Google Code Jam" group. To

Re: [gcj] How to add numbers given in a string WITHOUT using any loop and recursion

2011-12-22 Thread Lokesh Khandelwal
It is just impossible.Computer needs to look at each index atleast once (otherwise how would it know the number) and so min time required is O(n)Therefore cant do without a loop On Wednesday, December 21, 2011, Nikhil wrote: > ok > using loop but without using any predifine functioin. What wo