This commit is contained in:
13
include/s0518_coin_change_ii.hpp
Normal file
13
include/s0518_coin_change_ii.hpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef S0518_COIN_CHANGE_II_HPP
|
||||
#define S0518_COIN_CHANGE_II_HPP
|
||||
|
||||
#include <vector>
|
||||
|
||||
using namespace std;
|
||||
|
||||
class S0518 {
|
||||
public:
|
||||
int change(int amount, vector<int>& coins);
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user