我需要找到矩阵中的最小元素。
我有一个解决方案,但它并不完美。
type Matrix = [[Int]]
matMin :: Matrix -> Int
matMin [] = 99999999999
matMin (xs:xss) = minimum xs `min` matMin xss
谁能给我一个更好的解决方案的提示?
最佳答案
我能想到的最简单的就是 matMin = minimum . concat
关于algorithm - 查找矩阵中的最小元素 [[Int]],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8272769/