Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,845 questions

51,766 answers

573 users

How to inverse N x M matrix in Kotlin

1 Answer

0 votes
fun printMatrix(matrix: List<List<Int>>) {
    matrix.forEach { row ->
        println(row.joinToString("") { "%4d".format(it) })
    }
}

fun inverseMatrix(matrix: List<List<Int>>): List<List<Int>> {
    val rows = matrix.size
    val cols = matrix[0].size

    // Flatten, reverse, then regroup into rows
    val flatReversed = matrix.flatten().asReversed()
    
    return flatReversed.chunked(cols)
}

fun main() {
    val matrix = listOf(
        listOf(1, 2, 3, 4),
        listOf(5, 6, 7, 8),
        listOf(9, 10, 11, 12)
    )

    println("matrix:")
    printMatrix(matrix)

    val inverted = inverseMatrix(matrix)

    println("\ninverse matrix:")
    printMatrix(inverted)
}



/*
run:

matrix:
   1   2   3   4
   5   6   7   8
   9  10  11  12

inverse matrix:
  12  11  10   9
   8   7   6   5
   4   3   2   1

*/

 



answered Nov 23, 2025 by avibootz

Related questions

...