Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
NumberOfPaths
GokulDeep
Mar 1st, 2024
75
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
Java
0.21 KB
| None
|
0
0
raw
download
clone
embed
print
report
class
Solution
{
long
numberOfPaths
(
int
M,
int
N
)
{
if
(
(
M
==
1
)
||
(
N
==
1
)
)
{
return
1
;
}
return
numberOfPaths
(
M
-
1
, N
)
+
numberOfPaths
(
M, N
-
1
)
;
}
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
💵 CRAZY 2025 CASH EXPLOIT 💎 | EARN FAST NOW ✅...
JavaScript | 1 sec ago | 0.17 KB
🚨🚨 NEW METHOD 2025 WORKING 🚨🚨
JavaScript | 22 sec ago | 0.26 KB
🔥🔥 Automated Money System PDF 🔥🔥
Java | 49 sec ago | 0.17 KB
🚨 Earn 8,000$ Monthly Leaked Guide
JavaScript | 1 min ago | 0.25 KB
🔥🔥 HOW TO EARN $2,500 TONIGHT
Java | 1 min ago | 0.17 KB
💎 MONEY MAKING SECRET
Java | 2 min ago | 0.17 KB
🚨 EARN 7,500$ IN LESS THAN 10 MINUTES OF WORK
JavaScript | 3 min ago | 0.26 KB
🔥 NEW $10,000/MONTH SYSTEM 💰 🔥🚨
JavaScript | 3 min ago | 0.17 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!