mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 10:44:06 +00:00
7 lines
133 B
C++
7 lines
133 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
class Solution {
|
|
public:
|
|
int climbStairs(int n);
|
|
bool test(int n, long answer);
|
|
}; |