From 01cb061fe252687c195c96e9b06fd797ff4ed298 Mon Sep 17 00:00:00 2001 From: realstealthninja <68815218+realstealthninja@users.noreply.github.com> Date: Tue, 1 Oct 2024 22:09:27 +0530 Subject: [PATCH] fix: add cmath & algorithm header to mo.cpp --- range_queries/mo.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/range_queries/mo.cpp b/range_queries/mo.cpp index d281ef077..10abf0a96 100644 --- a/range_queries/mo.cpp +++ b/range_queries/mo.cpp @@ -1,4 +1,7 @@ +#include +#include #include + using namespace std; const int N = 1e6 + 5; int a[N], bucket[N], cnt[N];