Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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, X

N = int(input())
X = [int(x) for x in input().split(" ")]
print (solution(N, X))
```