Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~17 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for Sarala_1

how to convert this code to python #include<bits/stdc++.h> using namespace std; int maxi = INT_MAX; int maxx(int a, int b) { return (a > b)?a:b; } void cal_Time(int total, int sum, int i, vector<int> v1) { if(maxx(sum, total-sum) < maxi) { maxi = maxx(sum, total-sum); } if(v1[i]) return; cal_Time(total, sum …

Member Avatar for Reverend Jim
0
17

The End.