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

Scaler open source (30/30) #1095

Open
wants to merge 9 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
4 changes: 3 additions & 1 deletion challengers-list.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# List of challengers
1. [Mrinal](https://github.com/mrinal1224)
2. [Shivay](https://github.com/shivaylamba)
3. [Raghav](https://github.com/raghavdhingra)
3. [Chaitanya Yadav](https://github.com/cy2000yadav)
4. [Raghav](https://github.com/raghavdhingra)

8 changes: 8 additions & 0 deletions contributors/cy2000yadav/cy2000yadav.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: Chaitanya Yadav
github_user_name: cy2000yadav
url_of_github_issue: https://github.com/scaleracademy/scaler-september-open-source-challenge/issues/116
your_favroite_programming_language: python
your_hosted_github_pages_link: https://cy2000yadav.github.io/portfolio-website/
your_hosted_github_pages_repository_link: https://github.com/cy2000yadav/portfolio-website
---
4 changes: 4 additions & 0 deletions contributors/cy2000yadav/gist-solutions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Challange 18 - gist task

- Task 1 : [File handling in c](https://gist.github.com/cy2000yadav/606114650789ec80be2a949053cd8978)
- Task 2 : [Example on file handling in c](https://gist.github.com/cy2000yadav/2420e7475e4bff7377941e4ffe995f49)
6 changes: 6 additions & 0 deletions contributors/cy2000yadav/sum_digits.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
n = input()
total = 0
for ele in n:
total += int(ele)

print("Sum of digits of the number " + n + " is", total)