You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert


9
+

7
10
8
11
## What is this?
9
12
10
-
[Project Euler](https://projecteuler.net/) provide some algorithms and mathematical problems to solve to be used as experience tests.
13
+
[Project Euler](https://projecteuler.net/) provide some algorithms and
14
+
mathematical problems to solve to be used as experience tests.
11
15
12
16
Use this answers to learn some tip and tricks for algorithms tests.
13
17
@@ -18,10 +22,24 @@ As Project Euler says:
18
22
<https://projecteuler.net/about#publish>
19
23
20
24
```text
21
-
I learned so much solving problem XXX, so is it okay to publish my solution elsewhere?
22
-
It appears that you have answered your own question. There is nothing quite like that "Aha!" moment when you finally beat a problem which you have been working on for some time. It is often through the best of intentions in wishing to share our insights so that others can enjoy that moment too. Sadly, that will rarely be the case for your readers. Real learning is an active process and seeing how it is done is a long way from experiencing that epiphany of discovery. Please do not deny others what you have so richly valued yourself.
23
-
24
-
However, the rule about sharing solutions outside of Project Euler does not apply to the first one-hundred problems, as long as any discussion clearly aims to instruct methods, not just provide answers, and does not directly threaten to undermine the enjoyment of solving later problems. Problems 1 to 100 provide a wealth of helpful introductory teaching material and if you are able to respect our requirements, then we give permission for those problems and their solutions to be discussed elsewhere.
25
+
I learned so much solving problem XXX, so is it okay
26
+
to publish my solution elsewhere?
27
+
28
+
It appears that you have answered your own question. There is nothing quite
29
+
like that "Aha!" moment when you finally beat a problem which you have been
30
+
working on for some time. It is often through the best of intentions in wishing
31
+
to share our insights so that others can enjoy that moment too. Sadly, that
32
+
will rarely be the case for your readers. Real learning is an active process
33
+
and seeing how it is done is a long way from experiencing that epiphany of
34
+
discovery. Please do not deny others what you have so richly valued yourself.
35
+
36
+
However, the rule about sharing solutions outside of Project Euler does not
37
+
apply to the first one-hundred problems, as long as any discussion clearly aims
38
+
to instruct methods, not just provide answers, and does not directly threaten
39
+
to undermine the enjoyment of solving later problems. Problems 1 to 100 provide
40
+
a wealth of helpful introductory teaching material and if you are able to
41
+
respect our requirements, then we give permission for those problems and their
42
+
solutions to be discussed elsewhere.
25
43
```
26
44
27
45
If you have better answers or optimal solutions, fork and PR-me
@@ -123,8 +141,10 @@ make docker/compose-run -e LOG_LEVEL=DEBUG -e BRUTEFORCE=true
123
141
### Build and run a development image
124
142
125
143
Running container with development target.
126
-
Designed to develop on top of this image. All source application is mounted as a volume in **/app** directory.
127
-
Dependencies should be installed to run (not present in this target) so, you must install dependencies before run (or after a dependency add/change).
144
+
Designed to develop on top of this image. All source application is mounted as
145
+
a volume in **/app** directory.
146
+
Dependencies should be installed to run (not present in this target) so, you
147
+
must install dependencies before run (or after a dependency add/change).
128
148
129
149
```text
130
150
# install node_modules dependencies using docker runtime and store them in host directory
0 commit comments