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
| #include <stdlib.h> | |
| #include <stdio.h> | |
| typedef struct { | |
| int longitud; | |
| char *texto; | |
| } t_texto; | |
| int length(char* str) { | |
| int length = 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
| #!/usr/bin/runhaskell | |
| import Control.Monad | |
| import Data.Char | |
| import System.Process | |
| import System.Environment | |
| import Data.List.Split | |
| google = "google" | |
| yt = "youtube" |
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
| #!/usr/bin/runhaskell | |
| import System.Process | |
| import System.Exit | |
| import Data.List.Split | |
| import Data.List | |
| import Control.Exception | |
| main :: IO () | |
| main = do |