Day 24 of 100 day of code
It's day 24 and today I practiced three questions on codechef
question 1
#include <bits/stdc++.h>
using namespace std;
bool solve(int n){
int cnt =0;
int left_days = 120-n;
for(int i =0;i<n;i++){
char x;
cin>>x;
if(x=='1'){
c...
pranavsharma.hashnode.dev1 min read