We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bd2348 commit 21065cdCopy full SHA for 21065cd
README.md
@@ -83,7 +83,7 @@
83
84
### Elixir
85
86
-To run the elixir solution:
+To run the Elixir solution:
87
```sh
88
iex ./.../solution.ex
89
```
@@ -98,7 +98,7 @@ chapter=997 && mkdir ./$chapter && touch ./$chapter/my_solution.ex && touch ./$c
98
99
### JavaScript
100
101
-To run the js solution:
+To run the JS solution:
102
103
node ./.../solution.js
104
test.cpp
@@ -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
@@ -0,0 +1,5 @@
+class Solution {
+ public int[] smallerNumbersThanCurrent(int[] nums) {
+ return nums;
+ }
0 commit comments