Skip to content

Latest commit

 

History

History
34 lines (19 loc) · 554 Bytes

CONTRIBUTING.md

File metadata and controls

34 lines (19 loc) · 554 Bytes

CONTRIBUTING

Thanks for your contribution!

tips

  • programming languages must be cpp

  • filename must be solution<problemNumber>.cpp. example: solution001.cpp.

Initial code

#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
    cout << "Hello World!" << endl;
  
    return 0;
}

step

  1. choose a problem on STOJ and solve it.

  2. commit it on STOJ.

  3. if the code is accepted, you can commit it to the repository.