Skip to content

Commit 4ec5e8a

Browse files
committed
Add general examples
1 parent 76daf2d commit 4ec5e8a

22 files changed

+461
-2
lines changed

general-examples/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Revision history for general-examples
2+
3+
## 0.1.0.0 -- YYYY-mm-dd
4+
5+
* First version. Released on an unsuspecting world.

general-examples/Main.hs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module Main where
2+
3+
main :: IO ()
4+
main = putStrLn "Hello, Haskell!"

general-examples/Setup.hs

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import Distribution.Simple
2+
main = defaultMain
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
cabal-version: >=1.10
2+
-- Initial package description 'general-examples.cabal' generated by 'cabal
3+
-- init'. For further documentation, see
4+
-- http://haskell.org/cabal/users-guide/
5+
6+
name: general-examples
7+
version: 0.1.0.0
8+
-- synopsis:
9+
-- description:
10+
-- bug-reports:
11+
-- license:
12+
license-file: LICENSE
13+
author: Dilip Kola
14+
maintainer: [email protected]
15+
-- copyright:
16+
-- category:
17+
build-type: Simple
18+
extra-source-files: CHANGELOG.md
19+
20+
executable general-examples
21+
main-is: Main.hs
22+
-- other-modules:
23+
-- other-extensions:
24+
build-depends: base >=4.13 && <4.14
25+
-- hs-source-dirs:
26+
default-language: Haskell2010
1.34 MB
Binary file not shown.

general-examples/ist-funcs

1.17 MB
Binary file not shown.

general-examples/list-funcs

1.55 MB
Binary file not shown.

general-examples/list-funcs.hs

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
module Main where
2+
3+
elm :: (Eq a) => a -> [a] -> Bool
4+
elm _ [] = False
5+
elm a (x:xs) = (a == x) || (elm a xs)
6+
7+
nub :: (Eq a) => [a] -> [a]
8+
9+
nub [] = []
10+
nub (x:xs)
11+
| elm x xs = nub xs
12+
| otherwise = (x : nub xs)
13+
14+
isAsc :: [Int] -> Bool
15+
isAsc [] = True
16+
isAsc [x] = True
17+
isAsc (x:y:xs) = (x <= y) && isAsc(y:xs)
18+
19+
hasPath :: [(Int, Int)] -> Int -> Int -> Bool
20+
hasPath xs x y
21+
| (x == y ) = True
22+
| otherwise = or [hasPath xs' n y | (m, n) <- xs, m == x]
23+
where
24+
xs' = [(m, n) | (m, n) <- xs, m /= x]
25+
26+
rev :: [a] ->[a]
27+
rev xs = rev' xs []
28+
where
29+
rev' [] ys = ys
30+
rev' (x:xs') ys = rev' xs' (x:ys)
31+
32+
-- Reverse using fold
33+
revf :: [a] ->[a]
34+
revf xs = foldl (\acc x -> x:acc) [] xs
35+
36+
-- Reverse using fold with flip
37+
revff :: [a] ->[a]
38+
revff = foldl (flip (:)) []
39+
40+
prefixes :: [a] -> [[a]]
41+
prefixes l = rev $ map rev $ foldl customAdd [] l
42+
where
43+
customAdd [] y = [[y]]
44+
customAdd (x:xs) y = ((y:x):(x:xs))
45+
46+
prefixes2 :: [a] -> [[a]]
47+
prefixes2 = foldr (\x acc -> [x] : map (x:) acc) []
48+
49+
lagrange :: [(Float, Float)] -> Float -> Float
50+
lagrange xs a = foldl (\acc (x, y) -> acc + (y * (lbp x))) 0 xs
51+
where lbp x' = foldl (\acc (x, _) -> acc * (a - x) / (x' - x) ) 1 [(x,y) | (x,y) <- xs, x /= x']
52+
53+
data Trie a = Leaf a | Node a [Trie a]
54+
foldtrie :: (b -> a -> b) -> b -> Trie a -> b
55+
foldtrie f acc (Leaf a) = f acc a
56+
foldtrie f acc (Node a as) = foldl (foldtrie f) (f acc a) as
57+
58+
main = do
59+
print (elm 2 [1, 3, 2])
60+
print (nub [2, 1, 2, 3, 1, 4])
61+
print (isAsc [1, 2, 3])
62+
print (isAsc [1, 2, 3, 1])
63+
print (hasPath [(1, 2), (2, 3), (3, 4)] 1 4)
64+
print (hasPath [(1, 2), (2, 3), (3, 4)] 3 1)
65+
print (hasPath [(1, 2), (2, 3), (3, 4)] 2 4)
66+
print (rev [1, 2, 3])
67+
print (revf [1, 2, 3])
68+
print (revff [1, 2, 3])
69+
print $ prefixes [1, 2, 3]
70+
print $ prefixes2 [1, 2, 3]
71+
print $ lagrange [(1, 1), (2, 8), (3, 27), (4, 64)] 6
72+
print $ foldtrie (flip (:)) [] (Node 'c' [(Node 'a' [Leaf 'r', Leaf 't']),(Node 'o' [Node 'o' [Leaf 'l']])])
73+

general-examples/lorem.txt

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
2+
3+
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
4+
5+
Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
6+
7+
Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
8+
9+
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis.
10+
11+
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores duo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet clita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero voluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
12+
13+
Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

general-examples/search-file

1.35 MB
Binary file not shown.

general-examples/search-file.hs

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
module Main where
2+
3+
import System.IO
4+
import Data.List
5+
import Data.Char
6+
7+
8+
getUserLines :: [String] -> IO [String] -- optional type signature
9+
getUserLines lines = do
10+
line <- getLine
11+
if null line
12+
then return (reverse lines)
13+
else getUserLines (line:lines)
14+
15+
printSearchResult :: (String, Maybe Int) -> IO ()
16+
printSearchResult (a, Just _) = do
17+
print $ a <> " is found"
18+
19+
printSearchResult (a, Nothing) = do
20+
print $ a <> " is not found"
21+
22+
printSearchResults :: [(String, Maybe Int)] -> IO () -- optional type signature
23+
printSearchResults [] = do
24+
return ()
25+
26+
printSearchResults (result:otherResults) = do
27+
printSearchResult result
28+
printSearchResults otherResults
29+
30+
split :: [Char] -> [Char] -> [[Char]]
31+
split [] _ = []
32+
split s d = filter (not.null) $ foldr (\c (w:ws) -> if (elemIndex c d) == Nothing then (((toLower c) : w) : ws) else ([]:(w:ws))) [[]] s
33+
34+
search inputWords fileWords = sortBy compareSearchResults $ map (\(word, lword) -> (word, elemIndex lword fileWords)) inputWordsWithLowerCase
35+
where inputWordsWithLowerCase = map (\word -> (word, map toLower word)) inputWords
36+
37+
compareSearchResults (_, Just _) (_, Just _) = EQ
38+
compareSearchResults (_, Nothing) (_, Nothing)= EQ
39+
compareSearchResults (_, Nothing) (_, Just _) = GT
40+
compareSearchResults (_, Just _) (_, Nothing) = LT
41+
42+
main :: IO ()
43+
main = do
44+
hSetBuffering stdout NoBuffering
45+
print $ "Enter path of the file:"
46+
filePath <- getLine
47+
print $ "Enter words to search:"
48+
inputWords <- getUserLines []
49+
contents <- readFile filePath
50+
let fileWords = split contents ", ?;.\t\n\r"
51+
let searchResults = search inputWords fileWords
52+
printSearchResults searchResults

general-examples/tree-funcs.hs

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
module Main where
2+
import Data.List hiding (insert)
3+
-- import Test.QuickCheck
4+
5+
data Tree a = Leaf | Node (Tree a) a (Tree a) deriving Show
6+
7+
8+
infinite_tree :: Tree (Integer, Integer)
9+
infinite_tree = infinite_tree_gen (0, 0)
10+
where
11+
infinite_tree_gen (a, b) = Node (infinite_tree_gen (a+1, b)) (a, b) (infinite_tree_gen (a, b + 1))
12+
13+
cut :: Integer -> Tree a -> Tree a
14+
cut 0 _ = Leaf
15+
cut n Leaf = Leaf
16+
cut n (Node l p r ) = Node (cut (n-1) l) p (cut (n-1) r)
17+
18+
insert :: (Ord a) => a -> Tree a -> Tree a
19+
insert a Leaf = Node (Leaf) a (Leaf)
20+
insert a (Node l p r)
21+
| a < p = Node (insert a l) p r
22+
| otherwise = Node l p (insert a r)
23+
24+
insert_list :: (Ord a) => [a] -> Tree a
25+
insert_list xs = foldr insert Leaf xs
26+
27+
inorder :: Tree a -> [a]
28+
inorder Leaf = []
29+
inorder (Node l p r) = (inorder l) ++ [p] ++ (inorder r)
30+
31+
-- prop_IIS xs = sort xs === xs'
32+
-- where
33+
-- types = xs :: [Int]
34+
-- xs' = inorder $ insert_list xs
35+
36+
main = do
37+
-- print $ cut 3 infinite_tree
38+
let t = insert_list [5, 6, 2, 1, 4, 7, 3]
39+
print $ inorder t
40+

hello-world/hello-world.cabal

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ cabal-version: 1.12
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: 7239b8d1fd50ebc9412accddb5ef13cbd655dcca3bf4e413e9822303f1d2e2ae
7+
-- hash: 699c6241fcb2a9a8821d06a32c9a1b049840888bad581df82d4dbc479252a3b3
88

99
name: hello-world
1010
version: 1.1.0.5
11+
license: MIT
12+
license-file: LICENSE
1113
build-type: Simple
1214

1315
library

rna-transcription/README.md

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# RNA Transcription
2+
3+
Given a DNA strand, return its RNA complement (per RNA transcription).
4+
5+
Both DNA and RNA strands are a sequence of nucleotides.
6+
7+
The four nucleotides found in DNA are adenine (**A**), cytosine (**C**),
8+
guanine (**G**) and thymine (**T**).
9+
10+
The four nucleotides found in RNA are adenine (**A**), cytosine (**C**),
11+
guanine (**G**) and uracil (**U**).
12+
13+
Given a DNA strand, its transcribed RNA strand is formed by replacing
14+
each nucleotide with its complement:
15+
16+
* `G` -> `C`
17+
* `C` -> `G`
18+
* `T` -> `A`
19+
* `A` -> `U`
20+
21+
Given invalid output, your program should return the first invalid character.
22+
23+
24+
25+
## Getting Started
26+
27+
Please refer to the [installation](https://exercism.io/tracks/haskell/installation)
28+
and [learning](https://exercism.io/tracks/haskell/learning) help pages.
29+
30+
## Running the tests
31+
32+
To run the test suite, execute the following command:
33+
34+
```bash
35+
stack test
36+
```
37+
38+
#### If you get an error message like this...
39+
40+
```
41+
No .cabal file found in directory
42+
```
43+
44+
You are probably running an old stack version and need
45+
to upgrade it.
46+
47+
#### Otherwise, if you get an error message like this...
48+
49+
```
50+
No compiler found, expected minor version match with...
51+
Try running "stack setup" to install the correct GHC...
52+
```
53+
54+
Just do as it says and it will download and install
55+
the correct compiler version:
56+
57+
```bash
58+
stack setup
59+
```
60+
61+
## Running *GHCi*
62+
63+
If you want to play with your solution in GHCi, just run the command:
64+
65+
```bash
66+
stack ghci
67+
```
68+
69+
## Feedback, Issues, Pull Requests
70+
71+
The [exercism/haskell](https://github.com/exercism/haskell) repository on
72+
GitHub is the home for all of the Haskell exercises.
73+
74+
If you have feedback about an exercise, or want to help implementing a new
75+
one, head over there and create an issue. We'll do our best to help you!
76+
77+
## Source
78+
79+
Hyperphysics [http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html](http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html)
80+
81+
## Submitting Incomplete Solutions
82+
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

rna-transcription/package.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: rna-transcription
2+
version: 1.3.0.10
3+
4+
dependencies:
5+
- base
6+
7+
library:
8+
exposed-modules: DNA
9+
source-dirs: src
10+
ghc-options: -Wall
11+
# dependencies:
12+
# - foo # List here the packages you
13+
# - bar # want to use in your solution.
14+
15+
tests:
16+
test:
17+
main: Tests.hs
18+
source-dirs: test
19+
dependencies:
20+
- rna-transcription
21+
- hspec
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
cabal-version: 1.12
2+
3+
-- This file has been generated from package.yaml by hpack version 0.33.0.
4+
--
5+
-- see: https://github.com/sol/hpack
6+
--
7+
-- hash: 6a65545b4ce412dfa8d34a288540e955171791710b3e6c35eb759bd2bd084aae
8+
9+
name: rna-transcription
10+
version: 1.3.0.10
11+
build-type: Simple
12+
13+
library
14+
exposed-modules:
15+
DNA
16+
other-modules:
17+
Paths_rna_transcription
18+
hs-source-dirs:
19+
src
20+
ghc-options: -Wall
21+
build-depends:
22+
base
23+
default-language: Haskell2010
24+
25+
test-suite test
26+
type: exitcode-stdio-1.0
27+
main-is: Tests.hs
28+
other-modules:
29+
Paths_rna_transcription
30+
hs-source-dirs:
31+
test
32+
build-depends:
33+
base
34+
, hspec
35+
, rna-transcription
36+
default-language: Haskell2010

rna-transcription/src/DNA.hs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module DNA (toRNA) where
2+
3+
dnaToRNA :: Char -> Either Char Char
4+
dnaToRNA 'G' = Right 'C'
5+
dnaToRNA 'C' = Right 'G'
6+
dnaToRNA 'T' = Right 'A'
7+
dnaToRNA 'A' = Right 'U'
8+
dnaToRNA c = Left c
9+
10+
toRNA :: String -> Either Char String
11+
toRNA = mapM dnaToRNA

rna-transcription/stack.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
resolver: lts-15.8

0 commit comments

Comments
 (0)