Giter Site home page Giter Site logo

ninety-nine-elm-problems's People

Contributors

allannozomu avatar andys8 avatar lawgsy avatar scrumpd avatar torabravo avatar wearsunscreen avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

ninety-nine-elm-problems's Issues

More detailed test results

Going through the book, I find that more details on test failures would have been helpful.
Would you be interested in a patch?

Solution to problem 32 is incorrect as per included test cases.

See title. Here is a slightly modified version of the unit test to demonstrate the problem...

import Html
import List
import Maybe

gcd : Int -> Int -> Int 
gcd a b =
    if b == 0 then  
        a
    else
        gcd b (a % b)

main =
    test |> toString |> Html.text

test : List Bool
test =
    List.map (\(x, y) -> x == y)
        [ ( gcd 36 63, 9 )
        , ( gcd 10 25, 5 )
        , ( gcd 120 120, 120 )
        , ( gcd 2 12, 2 )
        , ( gcd 23 37, 1 )
        , ( gcd 45 330, 15 )
        , ( gcd 24528 65934, 6 )
        , ( gcd 120 -120, 120 )
        , ( gcd -2 12, 2 )
        , ( gcd 37 23, 1 )
        ]

Result: [True,True,True,True,True,True,True,False,True,True]

Suggested fix...

gcd : Int -> Int -> Int 
gcd a b =
    if b == 0 then  
        abs a
    else
        gcd b (a % b)

Result : [True,True,True,True,True,True,True,True,True,True]

Solution to Problem 10 is maybe overcomplicated (?)

I'm new to Elm, but maybe this solution to Problem 10 is more straightforward?

Or maybe the problem itself should be reformulated to require a solution of the desired complexity?

It assumes that the input list is to spec-- each sublist contains only identical elements. It's a bit more ham-fisted than the listed solution, but it passes all the tests.

runLengths : List (List a) -> List ( Int, a )
runLengths xss =
  case xss of
    [] ->
      []
    ys :: yys ->
      case ys of
        [] ->
          runLengths yys
        z :: zs ->
          ( List.length ys, z ) :: runLengths yys

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.