From c77de8e969b9c39a6cad24be07864b8f87e71c8c Mon Sep 17 00:00:00 2001 From: TUSHAR KUWAR <48707281+TusharKuwar@users.noreply.github.com> Date: Mon, 5 Sep 2022 17:32:57 +0530 Subject: [PATCH 1/6] parent 6d14cabd278392f06e701911a1d2b2af35b4244f author TUSHAR KUWAR <48707281+TusharKuwar@users.noreply.github.com> 1662379377 +0530 committer TusharKuwar 1662579015 +0530 Create contributors/TusharKuwar/TusharKuwar.md Signed-off-by: TusharKuwar --- contributors/TusharKuwar/TusharKuwar.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 contributors/TusharKuwar/TusharKuwar.md diff --git a/contributors/TusharKuwar/TusharKuwar.md b/contributors/TusharKuwar/TusharKuwar.md new file mode 100644 index 000000000..0961ce349 --- /dev/null +++ b/contributors/TusharKuwar/TusharKuwar.md @@ -0,0 +1,5 @@ +--- +name: Tushar Kuwar +github_user_name: TusharKuwar +url_of_github_issue: https://github.com/scaleracademy/scaler-september-open-source-challenge/issues/411 +--- From 5ca6a40cbf7370627a9bec49c95606602618a3ec Mon Sep 17 00:00:00 2001 From: TusharKuwar Date: Sun, 11 Sep 2022 00:50:30 +0530 Subject: [PATCH 2/6] challenge 10 signing the commit Signed-off-by: TusharKuwar --- contributors/TusharKuwar/TusharKuwar.md | 1 + 1 file changed, 1 insertion(+) diff --git a/contributors/TusharKuwar/TusharKuwar.md b/contributors/TusharKuwar/TusharKuwar.md index 0961ce349..fd8689211 100644 --- a/contributors/TusharKuwar/TusharKuwar.md +++ b/contributors/TusharKuwar/TusharKuwar.md @@ -2,4 +2,5 @@ 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 --- From 9e527a85ad016634c29c06484b48a2918798f943 Mon Sep 17 00:00:00 2001 From: TusharKuwar Date: Fri, 16 Sep 2022 00:26:52 +0530 Subject: [PATCH 3/6] challengers-list.md updated Signed-off-by: TusharKuwar --- challengers-list.md | 1 + 1 file changed, 1 insertion(+) diff --git a/challengers-list.md b/challengers-list.md index 47394f4f2..535c77e9c 100644 --- a/challengers-list.md +++ b/challengers-list.md @@ -1,3 +1,4 @@ # List of challengers 1. [Mrinal](https://github.com/mrinal1224) 2. [Shivay](https://github.com/shivaylamba) +3. [Tushar](https://github.com/TusharKuwar) From ebaa1c5b4cf13087d01f4f70c20f9a500e04d79e Mon Sep 17 00:00:00 2001 From: TusharKuwar Date: Sun, 18 Sep 2022 22:27:23 +0530 Subject: [PATCH 4/6] contributors/TusharKuwar/gist-solutions.md file added and added gist in it Signed-off-by: TusharKuwar --- contributors/TusharKuwar/gist-solutions.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 contributors/TusharKuwar/gist-solutions.md diff --git a/contributors/TusharKuwar/gist-solutions.md b/contributors/TusharKuwar/gist-solutions.md new file mode 100644 index 000000000..61e1bd635 --- /dev/null +++ b/contributors/TusharKuwar/gist-solutions.md @@ -0,0 +1,2 @@ +[Software Development related gist](https://gist.github.com/TusharKuwar/9b31ff11be49d2619134ff89fa3b131c) +[Code Snippet Gist](https://gist.github.com/TusharKuwar/ed66a7d620c748b35cf6e5c6ddb1a484) \ No newline at end of file From e23ba353f7c4e8425b5cb1345a404ebcb7358a5c Mon Sep 17 00:00:00 2001 From: TusharKuwar Date: Tue, 20 Sep 2022 00:06:40 +0530 Subject: [PATCH 5/6] Challange-19 added code file Signed-off-by: TusharKuwar --- contributors/TusharKuwar/gist-solutions.md | 6 ++++-- contributors/TusharKuwar/inorder_postorder_to_tree.py | 6 ++++++ 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 contributors/TusharKuwar/inorder_postorder_to_tree.py diff --git a/contributors/TusharKuwar/gist-solutions.md b/contributors/TusharKuwar/gist-solutions.md index 61e1bd635..dcf098980 100644 --- a/contributors/TusharKuwar/gist-solutions.md +++ b/contributors/TusharKuwar/gist-solutions.md @@ -1,2 +1,4 @@ -[Software Development related gist](https://gist.github.com/TusharKuwar/9b31ff11be49d2619134ff89fa3b131c) -[Code Snippet Gist](https://gist.github.com/TusharKuwar/ed66a7d620c748b35cf6e5c6ddb1a484) \ No newline at end of file +# Gist Linkes + +1: Software Development Related Topic Gist: +2: Code Snippet Gist: diff --git a/contributors/TusharKuwar/inorder_postorder_to_tree.py b/contributors/TusharKuwar/inorder_postorder_to_tree.py new file mode 100644 index 000000000..ba23d2550 --- /dev/null +++ b/contributors/TusharKuwar/inorder_postorder_to_tree.py @@ -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) From 413663fe511eb58b4285d7f1d69ead05a206d9d9 Mon Sep 17 00:00:00 2001 From: TusharKuwar Date: Thu, 22 Sep 2022 22:40:41 +0530 Subject: [PATCH 6/6] Portfolio basic website created Signed-off-by: TusharKuwar --- contributors/TusharKuwar/TusharKuwar.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contributors/TusharKuwar/TusharKuwar.md b/contributors/TusharKuwar/TusharKuwar.md index fd8689211..92d34581b 100644 --- a/contributors/TusharKuwar/TusharKuwar.md +++ b/contributors/TusharKuwar/TusharKuwar.md @@ -3,4 +3,6 @@ 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 ---