diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2020-10-24 15:32:46 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2020-10-24 15:32:46 +0300 |
| commit | bd760b5c51351e787297ceb54422beb8ce00a1ec (patch) | |
| tree | efd51e6f2fee427bd05b10331be8090c3d326172 /Java/Beginer training/out/production | |
| parent | be891b06d065504be51d094503c654377ebc22d7 (diff) | |
| download | Self-learning-bd760b5c51351e787297ceb54422beb8ce00a1ec.tar Self-learning-bd760b5c51351e787297ceb54422beb8ce00a1ec.tar.gz Self-learning-bd760b5c51351e787297ceb54422beb8ce00a1ec.zip | |
Removed some build and local configuration files
Diffstat (limited to 'Java/Beginer training/out/production')
| -rw-r--r-- | Java/Beginer training/out/production/Beginer training/Game_test.class | bin | 2422 -> 0 bytes | |||
| -rw-r--r-- | Java/Beginer training/out/production/Beginer training/META-INF/Beginer training.kotlin_module | bin | 16 -> 0 bytes | |||
| -rw-r--r-- | Java/Beginer training/out/production/Beginer training/NumberName.class | bin | 4947 -> 0 bytes | |||
| -rw-r--r-- | Java/Beginer training/out/production/Beginer training/Player.class | bin | 396 -> 0 bytes | |||
| -rw-r--r-- | Java/Beginer training/out/production/Beginer training/Training.class | bin | 3505 -> 0 bytes | |||
| -rw-r--r-- | Java/Beginer training/out/production/Beginer training/VampireNumber explanation.txt | 39 | ||||
| -rw-r--r-- | Java/Beginer training/out/production/Beginer training/VampireNumber.class | bin | 1968 -> 0 bytes |
7 files changed, 0 insertions, 39 deletions
diff --git a/Java/Beginer training/out/production/Beginer training/Game_test.class b/Java/Beginer training/out/production/Beginer training/Game_test.class Binary files differdeleted file mode 100644 index 38331d5..0000000 --- a/Java/Beginer training/out/production/Beginer training/Game_test.class +++ /dev/null diff --git a/Java/Beginer training/out/production/Beginer training/META-INF/Beginer training.kotlin_module b/Java/Beginer training/out/production/Beginer training/META-INF/Beginer training.kotlin_module Binary files differdeleted file mode 100644 index 2983af7..0000000 --- a/Java/Beginer training/out/production/Beginer training/META-INF/Beginer training.kotlin_module +++ /dev/null diff --git a/Java/Beginer training/out/production/Beginer training/NumberName.class b/Java/Beginer training/out/production/Beginer training/NumberName.class Binary files differdeleted file mode 100644 index 39408a5..0000000 --- a/Java/Beginer training/out/production/Beginer training/NumberName.class +++ /dev/null diff --git a/Java/Beginer training/out/production/Beginer training/Player.class b/Java/Beginer training/out/production/Beginer training/Player.class Binary files differdeleted file mode 100644 index 398e5e5..0000000 --- a/Java/Beginer training/out/production/Beginer training/Player.class +++ /dev/null diff --git a/Java/Beginer training/out/production/Beginer training/Training.class b/Java/Beginer training/out/production/Beginer training/Training.class Binary files differdeleted file mode 100644 index 9bc5125..0000000 --- a/Java/Beginer training/out/production/Beginer training/Training.class +++ /dev/null diff --git a/Java/Beginer training/out/production/Beginer training/VampireNumber explanation.txt b/Java/Beginer training/out/production/Beginer training/VampireNumber explanation.txt deleted file mode 100644 index 10ac553..0000000 --- a/Java/Beginer training/out/production/Beginer training/VampireNumber explanation.txt +++ /dev/null @@ -1,39 +0,0 @@ -VampireNumber Java task, code explanation with the number 1827: - -1827 (Number that we are checking) -0123 (Indexes of digits, in code they are named: first, second, third & fourth) - -The first and second number that are multiplied are illustrated combined as one (the first half of the calculated numbers is the first multiple, and the second half - the second) -For example, the number 1278 is actually 12 and 78 and they are multiplied to check for the result -This is done like that to better illustrate how the numbers change - -Cycle: Swap 1 with 3 (indexes): -1827 1728 -1782 1287 -1278 1872 - -2178 2871 -2817 2718 -2781 2187 NOTE: 2187 is the answer, so the code would stop here, but this example is continued to the end - -7281 7182 -7128 7821 -7812 7218 - -8712 8217 -8271 8172 -8127 8721 - -1827 (Here the cycles end) - -Cycle: it rotates the last 3 digits, for example if we have 123,the 3 gets in the front and the others move back, i.e. 312 - - 1 2 3 => 3 1 2 - ^-----' - -Swap 1 with 3: as the name suggests, it makes a second version of the number by swapping the 1st (index) and 2nd (index) digit - - 0 1 2 3 => 0 3 2 1 - ^---^ - - -the swap is there because with the cycle we miss out on half of the possible numbers
\ No newline at end of file diff --git a/Java/Beginer training/out/production/Beginer training/VampireNumber.class b/Java/Beginer training/out/production/Beginer training/VampireNumber.class Binary files differdeleted file mode 100644 index ef49838..0000000 --- a/Java/Beginer training/out/production/Beginer training/VampireNumber.class +++ /dev/null |
