From 60f28d5c5a1ef480138306ce9c904e303241e362 Mon Sep 17 00:00:00 2001 From: ShazidMahsrafi Date: Mon, 22 Apr 2024 02:20:48 +0600 Subject: [PATCH] update template again --- Template/CPTemp.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Template/CPTemp.cpp b/Template/CPTemp.cpp index c548602..1e59398 100644 --- a/Template/CPTemp.cpp +++ b/Template/CPTemp.cpp @@ -20,7 +20,6 @@ using namespace std; #define FAST (ios_base:: sync_with_stdio(false),cin.tie(NULL)); ull mypow(ull a,ull b,ull m=MOD) {ull ans=1; a%=m; while(b){if(b&1) ans=(ans*a)%m; a=(a*a)%m; b>>=1;} return ans;} - void solve() {