예제 #1
0
        public long Solution(string input)
        {
            long fileDecompressedLength = decompressFile.GetDecompressedFileLength(
                input, FileCompressionFormat.VersionTwo
                );

            return(fileDecompressedLength);
        }
예제 #2
0
        public int Solution(string input)
        {
            int fileDecompressedLength = (int)decompressFile.GetDecompressedFileLength(
                input, FileCompressionFormat.VersionOne
                );

            return(fileDecompressedLength);
        }