This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| zipped successfully | |
| Vector(80, 75, 3, 4, 20, 0, 8, 8, 8, 0, 101, 99, -63, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 116, 101, 115, 116, 95, 115, 101, 114, 105, 101, 115, 46, 106, 115, 111, 110, 45, -53, 77, 10, -62, 48, 16, 5, -32, -69, 100, -35, -108, -55, 24, -45, 52, 39, 112, 39, -120, 110, 20, 41, 105, -102, 74, -80, 127, 52, -87, 32, -59, -69, 59, -48, 50, -101, 121, -13, -26, 91, 89, 104, -104, 97, -54, 53, 26, 81, 32, -81, -91, -10, 92, 74, -19, -72, 110, -75, -26, 5, -70, -78, 61, 74, 13, -115, 2, -106, -79, 20, 122, 31, -3, 28, 124, 36, -109, 124, 76, -43, -98, 50, -10, -102, -19, -80, 116, 118, 14, -23, 75, -35, -23, 124, -69, -48, 113, 26, -61, -112, -24, -9, -79, 110, 52, -39, 126, -94, 22, 1, -127, -125, -30, 32, -82, 80, 26, 44, -116, -128, 28, -124, 86, 120, -72, 19, -86, 23, -9, -10, -69, -38, 118, 34, 113, -20, 125, -75, -89, -116, 125, 108, -73, 120, 102, 48, -121, -33, -109, -26, 15, 80, 75, 7, 8, -86, -29, -11, -5, -103, 0, 0, 0, -59, 0, 0, 0, 80, 75, 3, 4, 20, 0, 8, 8, 8, 0, 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| trait Zipper[F[_]] { | |
| def zip(data: Vector[Data]): F[Stream[F, Byte]] | |
| def unzip(zipped: Stream[F, Byte]): F[Either[ParsingError, Vector[Data]]] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy | |
| matrix = numpy.array([[24, 9, -1, -5, -24], | |
| [-1, -14, 1, 9, 40], | |
| [-7, 5, -21, 0, -84], | |
| [1, 4, 8, -22, -56]]) | |
| values = numpy.zeros(4) | |
| ITER = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy | |
| matrix = numpy.array([[24, 9, -1, -5, -24], | |
| [-1, -14, 1, 9, 40], | |
| [-7, 5, -21, 0, -84], | |
| [1, 4, 8, -22, -56]]) | |
| values = numpy.zeros(4) | |
| ITER = 0 |