RunestoneInteractive / RunestoneInteractive/pythonds
missing type conversion
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 273
- Forks
- 160
- PR merge metrics
- No merged PRs in 30d
Description
Error reported in course pythonds on page Exercises by user aw9677 atomicpenguines@gmail.com
Line 15 of the solution to activity 12.7 is missing the conversion to list, currently it reads:
keys = letter_count.keys()
And it should read:
keys = list(letter_count.keys())
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Open the pythonds course's Exercises page and locate activity 12.7, especially line 15 of its solution. Confirm the reported mismatch in the handling of letter_count.keys(), then verify that the solution matches the requested list conversion.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- content
- Issue type
- Bug
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 45/100