“Java ke Kotlin Online Convertor” Kode Jawaban

Konversi Kode Java ke Konverter Online Kotlin

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

Java ke 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

Konversi Kotlin ke Java Online

Tools -> Kotlin -> Show Kotlin Bytecode 
abdullah

Jawaban yang mirip dengan “Java ke Kotlin Online Convertor”

Pertanyaan yang mirip dengan “Java ke Kotlin Online Convertor”

Lebih banyak jawaban terkait untuk “Java ke Kotlin Online Convertor” di Java

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya