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

Function solve

CSES/DP/RemovingDigits.cpp:37–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35}
36
37void solve() {
38 int N; cin >> N;
39 vector<int> dp(N+1,-1);
40 cout << f(N,dp) << std::endl;
41}
42
43signed main() {
44 ios_base::sync_with_stdio(false),cin.tie(nullptr);

Callers 1

mainFunction · 0.70

Calls 1

fFunction · 0.70

Tested by

no test coverage detected