DIS: Re: OFF: [BF Golf] Round 1 Begins

2012-10-22 Thread Sean Hunt
On Mon, Oct 22, 2012 at 12:17 PM, Kerim Aydin wrote: > - Output must be produced/triggered by the newline, not an EOF. May output be triggered by each number as it appears? -scshunt

DIS: Re: OFF: [BF Golf] Round 1 Begins

2012-10-22 Thread Tanner Swett
On Mon, Oct 22, 2012 at 12:17 PM, Kerim Aydin wrote: > Summary: Take as input a single line of integers in base 10, output the > odd numbers in the input line (in base 10) in order, and terminate. Does "in order" mean "in ascending order", or "in the same order in which they were input"

DIS: Re: OFF: [BF Golf] Round 1 Begins

2012-10-23 Thread Aaron Goldfein
Is a space defined as 32? On Mon, Oct 22, 2012 at 12:17 PM, Kerim Aydin wrote: > > > > ROUND 1 CODING CHALLENGE > > Name : Odd > > Summary: Take as input a single line of integers in base 10, output the > odd numbers in the input line (in base 10) in order, and terminate. > > Par:

Re: DIS: Re: OFF: [BF Golf] Round 1 Begins

2012-10-23 Thread Kerim Aydin
On Mon, 22 Oct 2012, Sean Hunt wrote: > On Mon, Oct 22, 2012 at 12:17 PM, Kerim Aydin wrote: >           - Output must be produced/triggered by the newline, not an > EOF. > > > May output be triggered by each number as it appears? Sorry I was offline for questions yesterday. Output mu

Re: DIS: Re: OFF: [BF Golf] Round 1 Begins

2012-10-23 Thread Kerim Aydin
On Mon, 22 Oct 2012, Tanner Swett wrote: > On Mon, Oct 22, 2012 at 12:17 PM, Kerim Aydin wrote: > > Summary: Take as input a single line of integers in base 10, output the > > odd numbers in the input line (in base 10) in order, and > > terminate. > > Does "in order" mean "in ascend

Re: DIS: Re: OFF: [BF Golf] Round 1 Begins

2012-10-23 Thread Kerim Aydin
Additional clarification: output must be similarly sanitized as input. First output character must be a digit (not a space), no spaces between the last digit output and the newline. (This is implied but not stated directly when it's said that numbers are separated by spaces... moreover, the Par

Re: DIS: Re: OFF: [BF Golf] Round 1 Begins

2012-10-23 Thread Kerim Aydin
On Tue, 23 Oct 2012, Aaron Goldfein wrote: > Is a space defined as 32? Yep!