molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:7:24: error: expected ')' before 'w'
7 | std::sort(w.begin() w.end());
| ~ ^~
| )
molecules.cpp:7:32: error: no matching function for call to 'sort(std::vector<int>::iterator)'
7 | std::sort(w.begin() w.end());
| ^
In file included from /usr/include/c++/10/algorithm:62,
from molecules.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:4849:5: note: candidate: 'template<class _RAIter> void std::sort(_RAIter, _RAIter)'
4849 | sort(_RandomAccessIterator __first, _RandomAccessIterator __last)
| ^~~~
/usr/include/c++/10/bits/stl_algo.h:4849:5: note: template argument deduction/substitution failed:
molecules.cpp:7:32: note: candidate expects 2 arguments, 1 provided
7 | std::sort(w.begin() w.end());
| ^
In file included from /usr/include/c++/10/algorithm:62,
from molecules.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:4880:5: note: candidate: 'template<class _RAIter, class _Compare> void std::sort(_RAIter, _RAIter, _Compare)'
4880 | sort(_RandomAccessIterator __first, _RandomAccessIterator __last,
| ^~~~
/usr/include/c++/10/bits/stl_algo.h:4880:5: note: template argument deduction/substitution failed:
molecules.cpp:7:32: note: candidate expects 3 arguments, 1 provided
7 | std::sort(w.begin() w.end());
| ^
In file included from /usr/include/c++/10/algorithm:74,
from molecules.cpp:1:
/usr/include/c++/10/pstl/glue_algorithm_defs.h:292:1: note: candidate: 'template<class _ExecutionPolicy, class _RandomAccessIterator, class _Compare> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, void> std::sort(_ExecutionPolicy&&, _RandomAccessIterator, _RandomAccessIterator, _Compare)'
292 | sort(_ExecutionPolicy&& __exec, _RandomAccessIterator __first, _RandomAccessIterator __last, _Compare __comp);
| ^~~~
/usr/include/c++/10/pstl/glue_algorithm_defs.h:292:1: note: template argument deduction/substitution failed:
molecules.cpp:7:32: note: candidate expects 4 arguments, 1 provided
7 | std::sort(w.begin() w.end());
| ^
In file included from /usr/include/c++/10/algorithm:74,
from molecules.cpp:1:
/usr/include/c++/10/pstl/glue_algorithm_defs.h:296:1: note: candidate: 'template<class _ExecutionPolicy, class _RandomAccessIterator> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, void> std::sort(_ExecutionPolicy&&, _RandomAccessIterator, _RandomAccessIterator)'
296 | sort(_ExecutionPolicy&& __exec, _RandomAccessIterator __first, _RandomAccessIterator __last);
| ^~~~
/usr/include/c++/10/pstl/glue_algorithm_defs.h:296:1: note: template argument deduction/substitution failed:
molecules.cpp:7:32: note: candidate expects 3 arguments, 1 provided
7 | std::sort(w.begin() w.end());
| ^