MNMd Nehaluddin Haiderinnehal.hashnode.dev·Jul 3, 2022 · 1 min readDSA- Important Matrix QuestionsSet 1 Matrix in Snake Pattern. Transpose of a matrix. Search in row-wise and coumn-wise sorted matrix. Spiral Transversal of a matrix.00
MNMd Nehaluddin Haiderinnehal.hashnode.dev·Aug 25, 2021 · 1 min readkotlinfun main(args: Array<String>) { println("Hello, World!") }00
MNMd Nehaluddin Haiderinnehal.hashnode.dev·Nov 11, 2020 · 4 min readKotlin- Properties, Getters, SettersIntroduction Kotlin properties are variables that are declared inside the class but outside the method. It can be declared either as mutable using the var' keyword or read-only using the val keyword. Full syntax for declaring a property: var <propert...01A