horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:24:21: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
24 | return (v * y[i])%mod;
| ~~~~~~~~~~^~~~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:30:17: warning: unused parameter 'pos' [-Wunused-parameter]
30 | int updateX(int pos, int val) {
| ~~~~^~~
horses.cpp:30:26: warning: unused parameter 'val' [-Wunused-parameter]
30 | int updateX(int pos, int val) {
| ~~~~^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:34:17: warning: unused parameter 'pos' [-Wunused-parameter]
34 | int updateY(int pos, int val) {
| ~~~~^~~
horses.cpp:34:26: warning: unused parameter 'val' [-Wunused-parameter]
34 | int updateY(int pos, int val) {
| ~~~~^~~
horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:28:1: warning: control reaches end of non-void function [-Wreturn-type]
28 | }
| ^