Giter VIP home page Giter VIP logo

sst's People

Contributors

blbrekelmans avatar grammarware avatar laurensknoll avatar martyn82 avatar

Watchers

 avatar  avatar  avatar  avatar

sst's Issues

Week 6: if you have read this and you have no questions, please close this issue.

Clear concise report (++) with beauties of Haskell functions like

-- Exercise 3: Composites sieve.
composites :: [Integer]
composites = map fst (filter (not . snd) (sieve' [2..]))

-- characterize numbers by prime property
sieve' :: [Integer] -> [(Integer,Bool)]
sieve' ns = let ps = (sieve [2..])
            in map (\ n -> (n, (inlist n ps))) ns
            where inlist n (p:ps) | p < n = inlist n ps
                                  | p == n = True
                                  | otherwise = False

The test results are very readable. One remark:
There are more carmichael numbers than {(6k+1)(12k+1)(18k+1)}
(see solutions Lab6)

Week 4: if you have read this and you have no questions, please close this issue.

Opg 3.

--intersection:
intersectSet :: (Ord a) => Set a -> Set a -> Set a
intersectSet (Set []) _ = Set []
intersectSet (Set (x:xs)) s | inSet x s = insertSet x (intersectSet (Set xs) s)
                            | otherwise = intersectSet (Set xs) s

--in a commercial environment we would do this:
intersectSet' (Set xs) (Set ys) = list2set (intersect xs ys)

Good remark.

Opg 4.

rClos :: Ord a => Rel a -> Rel a
trClos r | isTransitive [] r = sort r
         | otherwise = trClos (union r (r @@ r))

-- property test functions
isTransitive, isSubset, isMinimal, hasSameDomain, hasSameRange :: Ord a => Rel a -> Rel a -> Bool

-- checks if transitivity holds for the given relation
isTransitive _ r = and [elem (x,z) r | (x,y) <- r, (y',z) <- r, y == y']

Why has isTransitive 2 arguments? The first argument will never be used.
trClos can be written without the (expensive) call of isTransitive.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.