public long Solution(string input) { long fileDecompressedLength = decompressFile.GetDecompressedFileLength( input, FileCompressionFormat.VersionTwo ); return(fileDecompressedLength); }
public int Solution(string input) { int fileDecompressedLength = (int)decompressFile.GetDecompressedFileLength( input, FileCompressionFormat.VersionOne ); return(fileDecompressedLength); }