Skip to content

Instantly share code, notes, and snippets.

View warhammer327's full-sized avatar

Rizwan warhammer327

View GitHub Profile
@warhammer327
warhammer327 / PROBLEM1.cpp
Created November 19, 2022 16:55
Airwrk - coding test
#include <bits/stdc++.h>
#define debug(x) printf("-----------------%d\n", x);
#define LEN sizeof(a) / sizeof(a[0])
#define MEM(arr, k) memset(arr, k, sizeof arr)
#define input freopen("01input.txt", "r", stdin)
#define output freopen("01output.txt", "w", stdout)
#define go \
ios_base::sync_with_stdio(false); \
cin.tie(0); \
cout.tie(0);