Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ayushsubedi/10daysofstatistics-hackerrank
Solutions to HackerRank's "10 Days of Statistics" challenge.
https://github.com/ayushsubedi/10daysofstatistics-hackerrank
hackerrank-solutions python3 statistics
Last synced: 9 days ago
JSON representation
Solutions to HackerRank's "10 Days of Statistics" challenge.
- Host: GitHub
- URL: https://github.com/ayushsubedi/10daysofstatistics-hackerrank
- Owner: ayushsubedi
- License: mit
- Created: 2021-03-08T03:18:06.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-12T06:32:24.000Z (almost 4 years ago)
- Last Synced: 2024-11-09T12:31:40.810Z (2 months ago)
- Topics: hackerrank-solutions, python3, statistics
- Language: Jupyter Notebook
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 10daysofstatistics
Solutions to HackerRank's "10 Days of Statistics" challenge.## Starter code for stdin
```
def solution(N, X):
return N, XN = int(input())
X = [int(x) for x in input().split(" ")]
print (solution(N, X))
```