We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
functions
See remaining issues from #251
Also see #269 about exercises on scopes.
The text was updated successfully, but these errors were encountered:
In calculate basic area fix text description that we expect 6.0 instead of 6.00 because the test will check for 1 digit only.
Sorry, something went wrong.
In Exercise 2, we should specify that we are always dealing with floats, never integers. Fix the example line:
Example: length=2, width=3, unit="m" should return "60000.0 cm^2" (because 2m × 3m = 6m² = 60000cm²)
to
Example: length=2.0, width=3.0, unit="m" should return "60000.0 cm^2" (because 2m × 3m = 6m² = 60000cm²)
In Exercise 2: in the text (part 2 and 3), make it clear that the default unit is always cm
Successfully merging a pull request may close this issue.
See remaining issues from #251
Also see #269 about exercises on scopes.
The text was updated successfully, but these errors were encountered: