Ejemplo n.º 1
0
        public long Solution(string input)
        {
            long fileDecompressedLength = decompressFile.GetDecompressedFileLength(
                input, FileCompressionFormat.VersionTwo
                );

            return(fileDecompressedLength);
        }
Ejemplo n.º 2
0
        public int Solution(string input)
        {
            int fileDecompressedLength = (int)decompressFile.GetDecompressedFileLength(
                input, FileCompressionFormat.VersionOne
                );

            return(fileDecompressedLength);
        }