This commit is contained in:
2023-12-04 15:18:37 +01:00
parent 309088e5d2
commit e33f77b46e
18 changed files with 366 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package imagefilters
/**
* This class implements the various image filters
*/
object ImageFilters {
def duplicate(a: Array[Array[Int]]): Array[Array[Int]] = {
/* TODO: Write your code hereunder */
return Array.empty
}
}