Skip to content

Commit 7ba5df1

Browse files
committed
first commit
1 parent 4d52878 commit 7ba5df1

File tree

3 files changed

+62
-1
lines changed

3 files changed

+62
-1
lines changed

Diff for: README.md

+57-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,57 @@
1-
# hackerrank-algorithms-javascript
1+
<p align="center">
2+
<a href="https://github.com/modavidc">
3+
<img alt="HackerRank Algorithms Javascript" src="hackerrank-javascript.png" width="150px" height="92px"/>
4+
</a>
5+
</p>
6+
7+
<h1 align="center">
8+
HackerRank Algorithms Javascript
9+
</h1>
10+
11+
<p align="center">
12+
<a href="#">
13+
<img src="https://img.shields.io/badge/javascript-1.9.0-blue.svg?style=flat-square&logo=javascript" alt="Javascript 1.9.0"/>
14+
</a>
15+
</a>
16+
</p>
17+
18+
<p align="center">
19+
This repository contains solutions to the<strong>Hackerrank</strong> practice algorithms, using <strong>Javascript</strong>.
20+
<br />
21+
<br />
22+
Take a look, play and have fun with this.
23+
<br />
24+
<a href="https://github.com/modavidc/hackerrank-algorithms-javascript/stargazers">Stars are welcome</a>
25+
·
26+
<a href="https://github.com/modavidc/hackerrank-algorithms-javascript/issues">Report a bug</a>
27+
·
28+
<a href="https://github.com/modavidc/hackerrank-algorithms-javascript/issues">Request a feature</a>
29+
</p>
30+
31+
## 💪 Exercices
32+
33+
| Subdomain | Challenge | Score | Difficulty | Solution |
34+
|:---------------------------:|:----------------------------------------------------------------------------------------------------------------------------:|:------:|:----------:|:-------------------------------------------------------------------------------------------------:|
35+
| Warmup | [Solve Me First](https://www.hackerrank.com/challenges/solve-me-first) | 1 | Easy | [solution.js](warmup/solve-me-first.js) |
36+
37+
## 👤 Author
38+
39+
**Moisés Cedeño**
40+
41+
42+
- Github: [@modavidc](https://github.com/modavidc)
43+
44+
## 🤝 Contributing
45+
46+
Contributions, issues and feature requests are welcome.<br />
47+
Feel free to check [issues page](https://github.com/modavidc/hackerrank-algorithms-javascript/issues) if you want to contribute.<br />
48+
49+
## 📝 License
50+
51+
Copyright © 2022 [Moisés Cedeño](https://github.com/modavidc).<br />
52+
This project is [MIT](https://github.com/kefranabg/readme-md-generator/blob/master/LICENSE) licensed.
53+
54+
---
55+
56+
_This README was generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_
57+

Diff for: hackerrank-javascript.png

128 KB
Loading

Diff for: warmup/solve-me-first.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// Problem: https://www.hackerrank.com/challenges/solve-me-first/problem
2+
3+
function solveMeFirst(a, b) {
4+
return a + b;
5+
}

0 commit comments

Comments
 (0)