s0518
All checks were successful
ci/woodpecker/push/test Pipeline was successful

This commit is contained in:
2023-02-09 17:06:22 +08:00
parent 9a31621c9a
commit 8dc3a66883
4 changed files with 72 additions and 4 deletions

View 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