Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Untitled
ogv
Aug 12th, 2019
131
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
Java
0.32 KB
| None
|
0
0
raw
download
clone
embed
print
report
class
Solution
{
public
int
climbStairs
(
int
n
)
{
if
(
n
<
0
)
return
0
;
int
a
=
1
;
int
b
=
1
;
int
t
;
for
(
int
i
=
1
;
i
<
n
;
i
++
)
{
t
=
b
;
b
+=
a
;
a
=
t
;
}
return
b
;
}
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Input_AOC
47 min ago | 18.01 KB
Untitled
14 hours ago | 13.15 KB
Analog GPUs: THE FUTURE
20 hours ago | 8.88 KB
Quotes I believe to be true.
20 hours ago | 0.16 KB
Die 7 wichtigsten Aktionen diese Woche
1 day ago | 4.17 KB
Untitled
1 day ago | 13.34 KB
Untitled
1 day ago | 13.59 KB
VNC SCRIPT 2/2: autoinput.vbs
VBScript | 1 day ago | 0.23 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!