给定两个正整数int x,int y,代表一个x乘y的网格,现有一个机器人要从网格左上角顶点走到右下角,每次只能走一步且只能向右或向下走,返回机器人有多少种走法。保证x+y小于等于12。 测试样例: 2,2 返回:2
加载中...
import java.util.*; public class Robot { public int countWays(int x, int y) { // write code here } }
class Robot { public: int countWays(int x, int y) { // write code here } };
# -*- coding:utf-8 -*- class Robot: def countWays(self, x, y): # write code here
class Robot { public int countWays(int x, int y) { // write code here } }