“Java to Kotlin Online Convertor” Ответ

преобразовать код Java в онлайн -конвертер Kotlin

Select the src/main/java folder in the project and choose 
	Code->"Convert Java File to Kotlin File”
VasteMonde

Java to Kotlin Online Convertor

static int uniquePathsWithObstacles(int[][] A)
{

	int r = 2, c = 2;

	// create a 2D-matrix and initializing
	// with value 0
	int[][] paths = new int[r][c];
	for(int i = 0; i < r; i++)
	{
	for(int j = 0; j < c; j++)
	{
		paths[i][j] = 0;
	}
	}

	// Initializing the left corner if
	// no obstacle there
	if (A[0][0] == 0)
	paths[0][0] = 1;

	// Initializing first column of
	// the 2D matrix
	for(int i = 1; i < r; i++)
	{
	// If not obstacle
	if (A[i][0] == 0)
		paths[i][0] = paths[i - 1][0];
	}

	// Initializing first row of the 2D matrix
	for(int j = 1; j < c; j++)
	{

	// If not obstacle
	if (A[0][j] == 0)
		paths[0][j] = paths[0][j - 1];
	}

	for(int i = 1; i < r; i++)
	{
	for(int j = 1; j < c; j++)
	{

		// If current cell is not obstacle
		if (A[i][j] == 0)
		paths[i][j] = paths[i - 1][j] +
		paths[i][j - 1];
	}
	}

	// Returning the corner value
	// of the matrix
	return paths[r - 1][c-1];
}
Smoggy Snake

Преобразовать Kotlin в Java Online

Tools -> Kotlin -> Show Kotlin Bytecode 
abdullah

Ответы похожие на “Java to Kotlin Online Convertor”

Вопросы похожие на “Java to Kotlin Online Convertor”

Больше похожих ответов на “Java to Kotlin Online Convertor” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования