Re: All practice questions

2009-07-24 Thread Rodrigo Augosto C.
Manish,

It's great, thanks

Rodrigo Augosto // rodrigo.augo...@gmail.com


On Fri, Jul 24, 2009 at 00:23, मनीष  wrote:

> I have downloaded all the problems and packed into pdf.
> u can download it from http://sites.google.com/site/sunergostech/manish
>
> On Thu, Jul 23, 2009 at 4:47 PM, fLiDe  wrote:
>
>>
>> Is it possible that all problems on the google code jam 2008 be packed
>> in a text file and uploaded so that the we don't have to flock back to
>> the website every time for problem statements. It would be really
>> helpful as my internet connection is very slow.
>>
>>
>>
>
>
> --
> Thanks and Regards
> Manish Kumar
> Phone:09323843184
>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"google-codejam" group.
To post to this group, send email to google-code@googlegroups.com
To unsubscribe from this group, send email to 
google-code+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-code?hl=en
-~--~~~~--~~--~--~---



Re: Which language to use?

2009-07-24 Thread Himanshu Sachdeva
Henrique ,what is a buffer overrun? and howz it helpful?

Cheers!
Himanshu Sachdeva



On Fri, Jul 24, 2009 at 2:07 AM, 'HoloCoCos' Cintra wrote:

> I used .NET C# last year... just remenber to turn on the option to do
> buffer overun ad Visual Studio.
>
> 2009/7/22 Eyad Al-Sibai 
>
>> What about C#?? or .NET in general?
>>
>
> --
> holoco...@tnt
> http://holococos.sjdr.com.br
>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"google-codejam" group.
To post to this group, send email to google-code@googlegroups.com
To unsubscribe from this group, send email to 
google-code+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-code?hl=en
-~--~~~~--~~--~--~---



Re: Which language to use?

2009-07-24 Thread imran khan
anyone knows how to use visual studio C# 2008 to redirect all the output
from console to a text file.
I can do this in visual studio 2005, by using > operator in debug parameter
of project property but this does not work in VS2008.

On Fri, Jul 24, 2009 at 9:48 PM, Himanshu Sachdeva wrote:

> Henrique ,what is a buffer overrun? and howz it helpful?
>
> Cheers!
> Himanshu Sachdeva
>
>
>
>
> On Fri, Jul 24, 2009 at 2:07 AM, 'HoloCoCos' Cintra wrote:
>
>> I used .NET C# last year... just remenber to turn on the option to do
>> buffer overun ad Visual Studio.
>>
>> 2009/7/22 Eyad Al-Sibai 
>>
>>> What about C#?? or .NET in general?
>>>
>>
>> --
>> holoco...@tnt
>> http://holococos.sjdr.com.br
>>
>>
>>
>>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"google-codejam" group.
To post to this group, send email to google-code@googlegroups.com
To unsubscribe from this group, send email to 
google-code+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-code?hl=en
-~--~~~~--~~--~--~---



Re: Which language to use?

2009-07-24 Thread Himanshu Sachdeva

Use streamwritter

On Friday, July 24, 2009, imran khan  wrote:
> anyone knows how to use visual studio C# 2008 to redirect all the output from 
> console to a text file.
> I can do this in visual studio 2005, by using > operator in debug parameter 
> of project property but this does not work in VS2008.
>
> On Fri, Jul 24, 2009 at 9:48 PM, Himanshu Sachdeva  
> wrote:
>
> Henrique ,what is a buffer overrun? and howz it helpful?Cheers!
> Himanshu Sachdeva
>
>
>
> On Fri, Jul 24, 2009 at 2:07 AM, 'HoloCoCos' Cintra  wrote:
>
>
>
> I used .NET C# last year... just remenber to turn on the option to do buffer 
> overun ad Visual Studio.
>
> 2009/7/22 Eyad Al-Sibai 
> What about C#?? or .NET in general?
>
> --
> holoco...@tnt
> http://holococos.sjdr.com.br
>
>
>
>
>
>
>
>
> >
>

-- 
Cheers!
Himanshu Sachdeva

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"google-codejam" group.
To post to this group, send email to google-code@googlegroups.com
To unsubscribe from this group, send email to 
google-code+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-code?hl=en
-~--~~~~--~~--~--~---



Re: All practice questions

2009-07-24 Thread Bartholomew Furrow
>
> I have downloaded all the problems and packed into pdf.
> u can download it from http://sites.google.com/site/sunergostech/manish
>

This is one of my favourite things about Code Jam -- when people see
something they want, and implement a feature on their own.  Thanks, मनीष!

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"google-codejam" group.
To post to this group, send email to google-code@googlegroups.com
To unsubscribe from this group, send email to 
google-code+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-code?hl=en
-~--~~~~--~~--~--~---



Re: Which language to use?

2009-07-24 Thread Henrique 'HoloCoCos' Cintra
Sorry, I translated wrongly, it's buffer overflow...

By default at VS Express 2003 the compiler doesn't check for buffer
overflow.  If you create a code the sums an int value many times, you won't
have an error after the value reaches more than the max value of an int, the
value will be "converted" to a negative one and continue summing... of
course the result won't be the right one but you won't be informed.

If you turn on this option, a "buffer overflow" error will occur and you'll
have to change the int type to long type, other type or change your code.

Last year my small tests passed but the long one (when you can submit just
once) didn't, because of this...

On Fri, Jul 24, 2009 at 1:18 PM, Himanshu Sachdeva wrote:

> Henrique ,what is a buffer overrun? and howz it helpful?
>
> Cheers!
> Himanshu Sachdeva
>

-- 
holoco...@tnt
http://holococos.sjdr.com.br

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"google-codejam" group.
To post to this group, send email to google-code@googlegroups.com
To unsubscribe from this group, send email to 
google-code+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-code?hl=en
-~--~~~~--~~--~--~---



Re: All practice questions

2009-07-24 Thread 曹擎宇
Thanks!

2009/7/25 Bartholomew Furrow 

> I have downloaded all the problems and packed into pdf.
>> u can download it from http://sites.google.com/site/sunergostech/manish
>>
>
> This is one of my favourite things about Code Jam -- when people see
> something they want, and implement a feature on their own.  Thanks, मनीष!
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"google-codejam" group.
To post to this group, send email to google-code@googlegroups.com
To unsubscribe from this group, send email to 
google-code+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-code?hl=en
-~--~~~~--~~--~--~---



Re: Which language to use?

2009-07-24 Thread Juan Pedro A. Lopes
Actually, the .NET runtime specification says that there is no integer
overflow, unless you declare it as "checked". But i'm not so sure for buffer
overflow. I'm almost sure there are array bound checkings in .NET languages
by default. I don't really know what about C++ CLR compiled.

On Fri, Jul 24, 2009 at 8:22 PM, Henrique 'HoloCoCos' Cintra <
cin...@gmail.com> wrote:

> Sorry, I translated wrongly, it's buffer overflow...
>
> By default at VS Express 2003 the compiler doesn't check for buffer
> overflow.  If you create a code the sums an int value many times, you won't
> have an error after the value reaches more than the max value of an int, the
> value will be "converted" to a negative one and continue summing... of
> course the result won't be the right one but you won't be informed.
>
> If you turn on this option, a "buffer overflow" error will occur and you'll
> have to change the int type to long type, other type or change your code.
>
> Last year my small tests passed but the long one (when you can submit just
> once) didn't, because of this...
>
> On Fri, Jul 24, 2009 at 1:18 PM, Himanshu Sachdeva 
> wrote:
>
>> Henrique ,what is a buffer overrun? and howz it helpful?
>>
>> Cheers!
>> Himanshu Sachdeva
>>
>
> --
> holoco...@tnt
> http://holococos.sjdr.com.br
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"google-codejam" group.
To post to this group, send email to google-code@googlegroups.com
To unsubscribe from this group, send email to 
google-code+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-code?hl=en
-~--~~~~--~~--~--~---



Re: Which language to use?

2009-07-24 Thread Nguyen Duong Tuan
And me, assembly ;))

2009/7/23 Luiz Filipe 

> JavaScript, i'll use it ;]
>
> 2009/7/22 Jonas Trevisol 
>
>> JAVA!
>>
>> is not PHP
>>
>> 2009/7/22 Victor Padilla R 
>>
>>> Yes, you can.
>>>
>>> You can use php, python, ruby, a spreadsheet, matlab. Anything!
>>>
>>> 2009/7/22 蔡智聪 
>>>
 no, you can't use php to solve the codejam problem

 2009/7/22 vlopez1985 

>
> Hello everyone,
>
> I was wondering if I could participate in codejam using PHP.
>
>
>
>


 --
 Please reply after you read this mail.
 Best Wishes!




>>>
>>>
>>>
>>
>>
>> --
>> Jonas Trevisol
>> Desenvolvedor Java Senior
>>
>> msn: jtrevi...@gmail.com
>> Fone: +55 51 8178-6045
>> As informacoes contidas neste e-mail e nos arquivos anexados podem ser
>> informacoes confidenciais ou privilegiadas. Caso voce nao seja o
>> destinatario correto, apague o conteudo desta mensagem e notifique o
>> remetente imediatamente.
>>
>>
>>
>>
>
>
> --
> Best Regards,
>
> Luiz Filipe F. Carneiro
>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"google-codejam" group.
To post to this group, send email to google-code@googlegroups.com
To unsubscribe from this group, send email to 
google-code+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-code?hl=en
-~--~~~~--~~--~--~---



Re: All practice questions

2009-07-24 Thread Nguyen Duong Tuan
Thanks, it's useful for me, the first to CodeJam :)

On Sat, Jul 25, 2009 at 7:18 AM, 曹擎宇  wrote:

> Thanks!
>
> 2009/7/25 Bartholomew Furrow 
>
> I have downloaded all the problems and packed into pdf.
>>> u can download it from http://sites.google.com/site/sunergostech/manish
>>>
>>
>> This is one of my favourite things about Code Jam -- when people see
>> something they want, and implement a feature on their own.  Thanks, मनीष!
>>
>>
>>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"google-codejam" group.
To post to this group, send email to google-code@googlegroups.com
To unsubscribe from this group, send email to 
google-code+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-code?hl=en
-~--~~~~--~~--~--~---



Re: All practice questions

2009-07-24 Thread Eagle

A lot of thanks Manish!
It was a great work!


On Jul 24, 9:23 am, मनीष   wrote:
> I have downloaded all the problems and packed into pdf.
> u can download it fromhttp://sites.google.com/site/sunergostech/manish
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"google-codejam" group.
To post to this group, send email to google-code@googlegroups.com
To unsubscribe from this group, send email to 
google-code+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-code?hl=en
-~--~~~~--~~--~--~---



Re: All practice questions

2009-07-24 Thread lanxiazhi
Good job!

2009/7/25 Eagle 

>
> A lot of thanks Manish!
> It was a great work!
>
>
> On Jul 24, 9:23 am, मनीष   wrote:
> > I have downloaded all the problems and packed into pdf.
> > u can download it fromhttp://sites.google.com/site/sunergostech/manish
> >
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"google-codejam" group.
To post to this group, send email to google-code@googlegroups.com
To unsubscribe from this group, send email to 
google-code+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-code?hl=en
-~--~~~~--~~--~--~---



Re: Access to the Practice problems of last year

2009-07-24 Thread lanxiazhi
There are much javascript-task running before you can see things.Try a new
browser with better javascript ability.

2009/7/24 Avneesh rai 

> same do i
>
> On Wed, Jul 22, 2009 at 10:57 PM, Digital Phreak <
> digital.phrea...@gmail.com> wrote:
>
>>
>> I see the same thing.
>>
>> On Jul 22, 5:53 pm, Marcel Caraciolo  wrote:
>> > I'm facing some problems to access the problems (practice problems) of
>> > last year. The page says loading contents list... but neve goes out of
>> > this state. Anyone is facing either this problem ?
>> >
>> > http://code.google.com/codejam/contest
>> >
>> > --
>> > Marcel Pinheiro Caraciolo
>> > M.S.C. Candidate at CIN/UFPE
>> > SCJP 1.4
>> >http://mobideia.blogspot.com/
>> >http://aimotion.blogspot.com/
>> >>
>>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"google-codejam" group.
To post to this group, send email to google-code@googlegroups.com
To unsubscribe from this group, send email to 
google-code+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-code?hl=en
-~--~~~~--~~--~--~---