Re: Possible difference in compilers?

2014-09-01 Thread bearophile via Digitalmars-d-learn
Charles: My solution I came up with (and works locally) is: import std.stdio; void main() { int height=1,t=1,oldN=0,n; readf(" %d\n", &t); foreach (i;0 .. t) { readf(" %d\n", &n); foreach (j; oldN .. n) I suggest to add a blank line after the import, to move t

Re: Possible difference in compilers?

2014-08-31 Thread Charles via Digitalmars-d-learn
For the test cases this only produces the first output (correctly), but then hits a compiler error with format.d before the next one. Any ideas what might be going on? Figured it out. The issue was the \n character at the end of the readf statements.

Possible difference in compilers?

2014-08-31 Thread Charles via Digitalmars-d-learn
Hi everyone So I've been working on the problems over at HackerRank.com trying to gain some familiarity with D. I use a Windows computer with VisualD, but the server used to test the program uses Ubuntu (I can't tell which compiler they're actually using). The problem I'm stuck on now is the Uto