Giter Site home page Giter Site logo

atomicscala / atomic-scala-solutions Goto Github PK

View Code? Open in Web Editor NEW
21.0 21.0 12.0 3.16 MB

Solutions to the exercises in "Atomic Scala" 2nd Edition by Bruce Eckel & Dianne Marsh

Home Page: http://www.atomicscala.com

License: Other

Scala 80.68% Shell 14.72% Python 3.90% JavaScript 0.70%

atomic-scala-solutions's People

Contributors

bruceeckel avatar fordnox avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

atomic-scala-solutions's Issues

ClassExercises/Solution-4.scala lose one "if" logic

   if(h < 0 || **(h==0 && m<0)**) {
        new SimpleTime(0, 0)
    }else if(m >= 0) {
      new SimpleTime(h, m)
    }
    else new SimpleTime(h-1 ,60+m)

test:

val st4 = new SimpleTime(9, 30).subtract(new SimpleTime(9, 50))
st4.hours is 0
st4.minutes is 0

How is the expected variable getting any value? in AddMultiply.scala

How is the "expected" variable in (result == expected) getting any value? If the "result" val is being made equal to "expected", where is expected picking up any value at all? very confusing

def test(x:Int, y:Double,
14 s:String, expected:Double):Unit = {
15 val result = addMultiply(x, y, s)
16 assert(result == expected,
17 "Expected " + expected +
18 " Got " + result)
19 println("result: " + result)
20 }

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.