-
-
Notifications
You must be signed in to change notification settings - Fork 692
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove Gigasecond; it's worthless in Java. #143
Comments
Gigasecond
; it's worthless in Java.
That makes sense to me. Plenty of more valuable exercises...! |
@exercism/java are we missing anything, here? |
It might still be useful to leave this in for comparison with the date/time handling of other languages. Once exercises are assigned difficulties, this could be a starter exercise that pleasantly surprises newcomers to Java. |
In Ruby there isn't even date/time considerations, aside from what the test chose to use for it. |
@stkent said:
Well, shoot; that's fair. Yeah, we can take a peek at how the Ruby track placed it too, when the time comes. |
Per this discussion, we're keeping it. |
FWIW, I watched someone complete this exercise today, and it was the first time they discovered and used multiple constructors, and the first time they learned you could call into one constructor from another! |
All the interesting date math that this exercise probably brings in other languages is roundly covered with the built-in
java.time
package.Worse, every solution I've seen submitted is nearly identical and so there's no room for discussion.
Unless we see this as a way to introduce that part of the standard library (which generally isn't the goal), this exercise doesn't yield the good stuff we're looking for.
The text was updated successfully, but these errors were encountered: