Skip to content

Commit 21065cd

Browse files
committed
🚧 [-]
1 parent 2bd2348 commit 21065cd

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383

8484
### Elixir
8585

86-
To run the elixir solution:
86+
To run the Elixir solution:
8787
```sh
8888
iex ./.../solution.ex
8989
```
@@ -98,7 +98,7 @@ chapter=997 && mkdir ./$chapter && touch ./$chapter/my_solution.ex && touch ./$c
9898

9999
### JavaScript
100100

101-
To run the js solution:
101+
To run the JS solution:
102102
```sh
103103
node ./.../solution.js
104104
```

test.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include <iostream>
2+
using namespace std;
3+
4+
// main() is where program execution begins.
5+
int main()
6+
{
7+
cout << "Hello World"; // prints Hello World
8+
return 0;
9+
}

test.java

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class Solution {
2+
public int[] smallerNumbersThanCurrent(int[] nums) {
3+
return nums;
4+
}
5+
}

0 commit comments

Comments
 (0)