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

Function main

CPP/Greedy_algorithm.cpp:29–35  ·  view source on GitHub ↗

Driver program

Source from the content-addressed store, hash-verified

27
28// Driver program
29int main()
30{
31 int n = 93;
32 cout << "Following is minimal number of change for " << n << " is ";
33 findMin(n);
34 return 0;
35}

Callers

nothing calls this directly

Calls 1

findMinFunction · 0.85

Tested by

no test coverage detected