You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.cpp 155 B

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
123456789101112
  1. #include "set1/runner.h"
  2. #include "set2/runner.h"
  3. #include "utils/runner.h"
  4. int main()
  5. {
  6. UTILS::run();
  7. SET1::run();
  8. SET2::run();
  9. return 0;
  10. }