koala.cpp: In function 'int minValue(int, int)':
koala.cpp:7:5: error: 'fill' was not declared in this scope
7 | fill(b, b+N,0);
| ^~~~
koala.cpp: At global scope:
koala.cpp:18:6: error: ambiguating new declaration of 'bool greaterValue(int, int)'
18 | bool greaterValue(int N, int W){
| ^~~~~~~~~~~~
In file included from koala.cpp:1:
koala.h:8:5: note: old declaration 'int greaterValue(int, int)'
8 | int greaterValue(int N, int W);
| ^~~~~~~~~~~~
koala.cpp: In function 'int minValue(int, int)':
koala.cpp:14:1: warning: control reaches end of non-void function [-Wreturn-type]
14 | }
| ^