Day 25 of 100 days of code
Today, I successfully tackled two CodeChef problems.
question 1
#include <bits/stdc++.h>
using namespace std;
bool solve(int n){
int sum=0;
for(int i =0;i<n;i++){
int x;
cin>>x;
sum+=x;
}
return (sum%2==1);
}
int main(){
int t;...
pranavsharma.hashnode.dev1 min read