Questions tagged [gild]

GILD (Groupware enabled Integrated Learning and Development) seeks to rectify this lack by creating an integrated learning and development plug-in for Eclipse.

4 questions
3
votes
2 answers

Creating makefile for a C++ program to run with g++

I have a sample program in a file called "helloworld.cpp": #include using namespace std; int main(int argc, char** argv) { cout<<"Hello World!"; return 0; } I am trying to write a makefile for this as follows: all: g++…
user21229
  • 53
  • 1
  • 5
2
votes
2 answers

How would I solve a coding puzzle with Javascript?

There is a website called Gild.com that has different coding puzzles/challenges for users to do. They can be completed in wide array of languages including Javascript. I am interested in solving these puzzles in Javascript, but I am unsure of the…
jbranchaud
  • 5,909
  • 9
  • 45
  • 70
1
vote
1 answer

Avoiding minor page faults in a C++ program with g++

I am trying to solve this puzzle: Shipping Coding Puzzle. This is the code I have come up so far: #include #include #include #include #include #include #include using namespace…
Asha
  • 11,002
  • 6
  • 44
  • 66
0
votes
2 answers

Code compilation fails on Gild in Java

I am submitting my code for Euler10 puzzle at Gild.com in Java using its online editor. The code runs perfectly for all test cases on my PC but compilation on Gild fails. I am following all of its coding rules but I think I'm still missing…
jayantS
  • 817
  • 13
  • 29