Skip to content

Commit 04c2359

Browse files
Initial commit
0 parents  commit 04c2359

7 files changed

Lines changed: 125 additions & 0 deletions

File tree

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

Day 0 Hello, World.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
function processData(inputString) {
2+
// This line of code prints the first line of output
3+
console.log("Hello, World.");
4+
5+
// Write the second line of output that prints the contents of 'inputString' here.
6+
console.log(inputString);
7+
}

Day 0 Hello, World.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Read a full line of input from stdin and save it to our dynamically typed variable, input_string.
2+
input_string = input()
3+
4+
# Print a string literal saying "Hello, World." to stdout.
5+
print('Hello, World.')
6+
7+
# TODO: Write a line of code here that prints the contents of input_string to stdout.
8+
9+
print(input_string)

Day 1 Data Types.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// Declare second integer, double, and String variables.
2+
// Read and save an integer, double, and String to your variables.
3+
var i2 = +(readLine());
4+
var d2 = +(readLine());
5+
var s2 = readLine();
6+
7+
// Print the sum of both integer variables on a new line.
8+
console.log(i + i2);
9+
10+
// Print the sum of the double variables on a new line.
11+
console.log((d + d2).toFixed(1));
12+
13+
// Concatenate and print the String variables on a new line
14+
// The 's' variable above should be printed first.
15+
console.log(s + s2);

Day 1 Data Types.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
i2 = int(input())
2+
d2 = float(input())
3+
s2 = input()
4+
5+
print(i + i2)
6+
print(d + d2)
7+
print(s + s2)

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Deepak Raj
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# [10DaysOfJavaScript](https://www.hackerrank.com/domains/tutorials/10-days-of-javascript)
2+
3+
- [10DaysOfJavaScript](#10daysofjavascript)
4+
- [Introduction](#introduction)
5+
- [Difficulty Level](#difficulty-level)
6+
- [Usage](#usage)
7+
- [Support](#support)
8+
- [Contributing](#contributing)
9+
- [Authors and acknowledgment](#authors-and-acknowledgment)
10+
- [License](#license)
11+
- [Project status](#project-status)
12+
- [Author](#author)
13+
14+
## Introduction
15+
16+
- HackerRank 10DaysOfJavaScript Challenge.
17+
- Check [10DaysOfJavaScript](https://www.hackerrank.com/domains/tutorials/10-days-of-javascript) Challenge.
18+
19+
## Difficulty Level
20+
21+
Hackerrank has around 5 levels of difficulty:
22+
23+
- Easy
24+
- Intermediate
25+
- Hard
26+
- Expert
27+
- Advanced.
28+
I suggest you pick a certain language and start with the warmup challenges to get used to the environment.
29+
30+
## Usage
31+
32+
A good way to start learning python concept.
33+
34+
## Support
35+
36+
contributors
37+
38+
## Contributing
39+
40+
Before submitting a bug, please do the following:
41+
42+
Perform basic troubleshooting steps:
43+
44+
- Make sure you are on the latest version. If you are not on the most recent version, your problem may have been solved already! Upgrading is always the best first step.
45+
- Try older versions. If you are already on the latest release, try rolling back a few minor versions (e.g. if on 1.7, try 1.5 or 1.6) and see if the problem goes away. This will help the devs narrow down when the problem first arose in the commit log.
46+
- Try switching up dependency versions. If the software in question has dependencies (other libraries, etc) try upgrading/downgrading those as well.
47+
48+
## Authors and acknowledgment
49+
50+
Show your appreciation to those who have contributed to the project.
51+
52+
## License
53+
54+
For open-source projects, Under MIT License.
55+
56+
## Project status
57+
58+
## Author
59+
60+
- Project: [10DaysOfJavaScript](https://www.hackerrank.com/domains/tutorials/10-days-of-javascript)
61+
- Author: CodePerfectPlus
62+
- Language: JavaScript
63+
- Github: <https://github.com/codePerfectPlus>
64+
- Website: <http://codeperfectplus.github.io/>

0 commit comments

Comments
 (0)