Uh oh!
There was an error while loading. Please reload this page.
Handle empty input case in Segment Tree build process - #8718
Conversation
rohan472000
left a comment
There was a problem hiding this comment.
To resolve this issue, you need to modify the type annotations, Instead of the current syntax, you should use the X | Y syntax.
roger-sato
commented
May 17, 2023
Thank you for your advice. However, that part wasn't contributed by me, so I'm unsure if I can make corrections to it. I've recently updated my branch following the merge of a PR that made changes to |
roger-sato
commented
May 25, 2023
@rohan472000 |
umairefiroz
commented
May 27, 2023
via email
Hi Alex,
We have received you request, I've escalated the source files and the
linguists files for the CAT analysis.
Once it done we'll proceed at the earliest.
Let me know if you have any queries.
Happy Weekend.
Umaire Firoz …On Tue, May 9, 2023, 20:14 roger-sato ***@***.***> wrote:
Describe your change:
- Add an algorithm?
- Fix a bug or typo in an existing algorithm?
- Documentation change?
Checklist:
- I have read CONTRIBUTING.md
<https://github.com/TheAlgorithms/Python/blob/master/CONTRIBUTING.md>.
- This pull request is all my own work -- I have not plagiarized.
- I know that pull requests will not be merged if they fail the
automated tests.
- This PR only changes one algorithm file. To ease review, please open
separate PRs for separate algorithms.
- All new Python files are placed inside an existing directory.
- All filenames are in all lowercase characters with no spaces or
dashes.
- All functions and variable names follow Python naming conventions.
- All function parameters and return values are annotated with Python type
hints <https://docs.python.org/3/library/typing.html>.
- All functions have doctests
<https://docs.python.org/3/library/doctest.html> that pass the
automated testing.
- All new algorithms include at least one URL that points to Wikipedia
or another similar explanation.
- If this pull request resolves one or more open issues then the
commit message contains Fixes: #{$ISSUE_NO}.
------------------------------
You can view, comment on, or merge this pull request online at:
#8718
Commit Summary
- 438c795
<438c795>
Handle empty input case in Segment Tree build process
File Changes
(1 file <https://github.com/TheAlgorithms/Python/pull/8718/files>)
- *M* data_structures/binary_tree/segment_tree.py
<https://github.com/TheAlgorithms/Python/pull/8718/files#diff-e4cd820e81e6599a55a8c71fa60e4bff2696d46c7f2802fedae2524596cde556>
(3)
Patch Links:
- https://github.com/TheAlgorithms/Python/pull/8718.patch
- https://github.com/TheAlgorithms/Python/pull/8718.diff
—
Reply to this email directly, view it on GitHub
<#8718>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AJK2QAF247LCCLLYW4NSBO3XFJJ5LANCNFSM6AAAAAAX3M2CUQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
tianyizheng02
left a comment
There was a problem hiding this comment.
LGTM, but this file is in desperate need of type hints and unit tests (leaving for future work)
Describe your change:
Checklist:
Fixes: #{$ISSUE_NO}.