MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / main

Function main

CPP/pandigital_numbers/code.cpp:317–333  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

315}
316
317int main()
318{
319 ios_base::sync_with_stdio(false);
320 cin.tie(NULL);
321 cout.tie(NULL);
322 cin.exceptions(cin.failbit);
323 // freopen("input.txt", "r", stdin);
324 // freopen("output.txt", "w", stdout);
325
326 clock_t start = clock();
327
328 solve();
329 clock_t end = clock();
330 double elapsed = double(end - start) / CLOCKS_PER_SEC;
331 printf("Time measured: %.4f seconds.", elapsed);
332 return 0;
333}
334
335/*
336

Callers

nothing calls this directly

Calls 1

solveFunction · 0.70

Tested by

no test coverage detected