Day 22 of 100 days of code
On the 22nd day, I took on three practice problems on CodeChef. Here they are:
Airline Restriction
#include <bits/stdc++.h>
using namespace std;
bool solution(int a,int b,int c,int d,int e){
return ((a+b)<=d && c<=e);
}
int main(){
int t;
cin...
pranavsharma.hashnode.dev1 min read