8 lines
163 B
C++

#include <bits/stdc++.h>
using namespace std;
class Solution
{
public:
int minCostClimbingStairs(vector<int> &cost);
bool test(vector<int> &cost, int answer);
};