Skip to content

Instantly share code, notes, and snippets.

View fayazkhan's full-sized avatar

Fayaz Yusuf Khan fayazkhan

  • Technicolor Creative Studios
  • Kochi, India
View GitHub Profile
@fayazkhan
fayazkhan / euler8.hs
Last active September 17, 2017 12:16
Solution to SDS challenge 4
import Data.Char
import Data.List
import Text.Read
main = do
putStrLn "Number"
number <- getLine
putStrLn "Number of digits to multiply"
digits <- getLine
putStrLn $ pureMain digits number
@fayazkhan
fayazkhan / ceasar.hs
Created September 10, 2017 08:36
Ceasar cipher challenge solution
{- Performs the Ceasar cipher encryption.
Compile this file by running:
ghc ceasar.hs
You'll need to have ghc package installed.
-}
import Data.Char
main = do