Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
37
void solve() {
38
int N; cin >> N;
39
vector<int> dp(N+1,-1);
40
cout << f(N,dp) << std::endl;
41
}
42
43
signed main() {
44
ios_base::sync_with_stdio(false),cin.tie(nullptr);
Callers
1
main
Function · 0.70
Calls
1
f
Function · 0.70
Tested by
no test coverage detected