MCPcopy Create free account
hub / github.com/Vishruth-S/CompetitiveCode / main

Function main

CodeChef_problems/MINDSUM/solution.cpp:77–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75
76
77int main() {
78 int test = 0;
79 ll N,D;
80 cin >> test ;
81 while(test--) {
82 cin >> N >> D;
83 mindsum *m = new mindsum(N,D);
84 m->findMinSum();
85 m->printOutput();
86 delete(m);
87 }
88 return 0;
89}
90

Callers

nothing calls this directly

Calls 2

findMinSumMethod · 0.80
printOutputMethod · 0.80

Tested by

no test coverage detected