Matriu triangular inferior X86623


Statement
 

pdf   zip

html

Feu una funció tringularInferior en què, donada una matriu en forma de llista de llistes, retorni si la matriu és triangular inferior.

Entrada

La funció rep una matriu en forma de llista de llistes com a paràmetre.

Sortida

La funció retorna un booleà com a sortida.

Observació

Sample session
>>> triangularInferior([[1, 0, 0], [1, 2, 0], [1, 2, 3]])
True
Information
Author
Gerard Escudero
Language
Catalan
Official solutions
Python
User solutions
Python