Skip to content
This repository was archived by the owner on Aug 30, 2023. It is now read-only.

TusharKuwar-details branch scaler challenges #1125

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions challengers-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
1. [Mrinal](https://github.com/mrinal1224)
2. [Shivay](https://github.com/shivaylamba)
3. [Raghav](https://github.com/raghavdhingra)
4. [Tushar](https://github.com/TusharKuwar)
8 changes: 8 additions & 0 deletions contributors/TusharKuwar/TusharKuwar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: Tushar Kuwar
github_user_name: TusharKuwar
url_of_github_issue: https://github.com/scaleracademy/scaler-september-open-source-challenge/issues/411
your_favroite_programming_language: Python
your_hosted_github_pages_link: https://tusharkuwar.github.io/me/
your_hosted_github_pages_repository_link: https://github.com/TusharKuwar/me
---
4 changes: 4 additions & 0 deletions contributors/TusharKuwar/gist-solutions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Gist Linkes

1: Software Development Related Topic Gist: <https://gist.github.com/TusharKuwar/9b31ff11be49d2619134ff89fa3b131c>
2: Code Snippet Gist: <https://gist.github.com/TusharKuwar/ed66a7d620c748b35cf6e5c6ddb1a484>
6 changes: 6 additions & 0 deletions contributors/TusharKuwar/inorder_postorder_to_tree.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# return sum
n = input()
total = 0
for ele in n:
total += int(ele)
print("Sum of digits of the number " + n + " is", total)