jackfrued / jackfrued/Python-100-Days
05构造程序逻辑正整数反转
Open
Nobody has claimed this yet.
- Dominant language
- Jupyter Notebook
- Stars
- 187k
- Forks
- 55.8k
- PR merge metrics
- No merged PRs in 30d
Description
正整数反转
while num > 0:
reversed_num = reversed_num * 10 + num % 10
num //= 10
请问怎么理解给reversed_num等式右边的赋值?我的牛角尖是:12345,不是3位数吖。
望告之。谢谢您。
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
Start with the positive-integer reversal loop shown in the issue and trace it using 12345 as the example input. Explain the right-hand side of the reversed_num assignment and how repeated iterations build the result; done means the question is answered clearly without requiring a repository file or test.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- documentation
- Issue type
- Documentation
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100