This commit is contained in:
Louis Heredero 2023-12-04 15:31:27 +01:00
parent e33f77b46e
commit 16e6e51472

View File

@ -6,8 +6,14 @@ package imagefilters
object ImageFilters {
def duplicate(a: Array[Array[Int]]): Array[Array[Int]] = {
/* TODO: Write your code hereunder */
return Array.empty
val height: Int = a.length
val width: Int = if (height == 0) 0 else a(0).length
val res: Array[Array[Int]] = Array.ofDim(height, width)
for (y: Int <- 0 until height) {
for (x: Int <- 0 until width) {
res(y)(x) = a(y)(x)
}
}
return res
}
}