1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

🎉 Initial commit

This commit is contained in:
Divlo
2020-07-05 15:48:51 +02:00
commit 395ae0eff3
32 changed files with 1752 additions and 0 deletions

View File

@ -0,0 +1,11 @@
# hello-world
Created by @Divlo at 5 July 2020.
## Instructions :
Your function should return Hello depending on the parameter.
## Examples :
See the `input-output.json` file for examples of input/output.

View File

@ -0,0 +1,14 @@
[
{
"input": ["world"],
"output": "Hello world!"
},
{
"input": ["everyone"],
"output": "Hello everyone!"
},
{
"input": ["Divlo"],
"output": "Hello Divlo!"
}
]

View File

@ -0,0 +1,4 @@
# javascript-hello - hello-world
Programming language : JavaScript
Created by @Divlo at 5 July 2020.

View File

@ -0,0 +1,5 @@
function solution (arg) {
return 'Hello ' + arg + '!'
}
module.exports = solution

View File

@ -0,0 +1,4 @@
# python-hello - hello-world
Programming language : Python
Created by @Divlo at 5 July 2020.

View File

@ -0,0 +1,2 @@
def solution(arg):
return 'Hello ' + arg + '!'

View File

@ -0,0 +1,4 @@
# typescript-hello - hello-world
Programming language : TypeScript
Created by @Divlo at 5 July 2020.

View File

@ -0,0 +1,5 @@
function solution (arg: string) {
return 'Hello ' + arg + '!'
}
export default solution