-
Notifications
You must be signed in to change notification settings - Fork 98
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
Counting Full Nodes in a Binary Tree #415
base: master
Are you sure you want to change the base?
Conversation
@aarzoopundir, If above given lines follow, then kindly create an issue now and claim it. I will assign it to you. |
@aarzoopundir, |
What is the mistake now?
…On Wed, 13 Oct 2021, 7:49 pm SarthakKeshari, ***@***.***> wrote:
@aarzoopundir <https://github.com/aarzoopundir>,
Kindly follow the guidelines. This is the last warning.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#415 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AQJOJDHIZCNCVEZG77GLSCTUGWIOXANCNFSM5F4GQ5LQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
@aarzoopundir, |
I don't know what is the issue id..can u pls tell
…On Wed, 13 Oct 2021, 8:00 pm SarthakKeshari, ***@***.***> wrote:
@aarzoopundir <https://github.com/aarzoopundir>,
PR template is not filled properly. Kindly go through other PRs to get a
clear idea
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#415 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AQJOJDGCYOU6QP33IXAR2BLUGWJZ3ANCNFSM5F4GQ5LQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
I've done the required changes .. please see through it.
On Wed, 13 Oct 2021, 9:48 pm aarzoo Pundir, ***@***.***>
wrote:
… I don't know what is the issue id..can u pls tell
On Wed, 13 Oct 2021, 8:00 pm SarthakKeshari, ***@***.***>
wrote:
> @aarzoopundir <https://github.com/aarzoopundir>,
> PR template is not filled properly. Kindly go through other PRs to get a
> clear idea
>
> —
> You are receiving this because you were mentioned.
> Reply to this email directly, view it on GitHub
> <#415 (comment)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AQJOJDGCYOU6QP33IXAR2BLUGWJZ3ANCNFSM5F4GQ5LQ>
> .
> Triage notifications on the go with GitHub Mobile for iOS
> <https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
> or Android
> <https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
>
>
|
@aarzoopundir, |
Pls see ..I've done these changes
…On Thu, 14 Oct 2021, 12:22 am SarthakKeshari, ***@***.***> wrote:
@aarzoopundir <https://github.com/aarzoopundir>,
You haven't filled the Issue ID, Screenshots section and checklist. Kindly
go through other PRs to see how other contributors are doing it.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#415 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AQJOJDA2SUKDUQXF3L2V66DUGXINFANCNFSM5F4GQ5LQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
@aarzoopundir, |
Issue Id you have worked upon -
#351
Briefly explain your program logic -
Full Nodes are the ones whose left and right child are not null. The idea is to traverse the tree in postorder. If the current node is full, we increment result by 1 and add returned values of left and right subtrees.
Screenshots(Attach 2 screenshots of your own input and output) -
Checklist:
Eg - If your code follow the below guidelines. Kindly change [] to [x]
All the conditions should be fulfilled for considering your code for merging -
I have mentioned the question as comment in my solution file.
My code follows the guidelines of this project.
I have performed a self-review of my own code.
I have commented my code.
My code gives the correct output.
I confirm that I have not copied the code from anywhere. In case its found that I have copied even after successful merge then I can be banned from the repository and hacktoberfest.
I affirm that I strictly follow contributing guidelines and code of conduct.