diff --git a/index.html b/index.html index 1be1c3f..7ab7580 100644 --- a/index.html +++ b/index.html @@ -2,12 +2,12 @@
- - - - - - + + + + + +
+ title="Yes, it's me!">
-const convert = (input, source, target, s = 0, str = '') => {
+const convert = (input, source, target, s = 0, str = '') => {
- const fromInputToSourceSystem = () => {
- input.split('').map(item => s = s * source.length + source.indexOf(item));
+ const fromInputToSourceSystem = () => {
+ input.split('').map(item => s = s * source.length + source.indexOf(item));
}
fromInputToSourceSystem();
- const fromSourceSystemToTargetSystem = () => {
- while (s > 0) {
+ const fromSourceSystemToTargetSystem = () => {
+ while (s > 0) {
str = target[s % target.length] + str;
s = Math.floor(s / target.length);
}
@@ -154,12 +154,15 @@ Code Example (Codewars)
function getParticipants(handshakes){
let i = 0
- while (handshakes >0) {
+ while (handshakes > 0) {
handshakes = handshakes-i;
i++
}
@@ -169,8 +172,11 @@ Code Example (Codewars)
-const isPrime = (number) => {
+const isPrime = (number) => {
if (number < 2) return false;
@@ -193,42 +199,42 @@ Experience and Education
I have No work experience
I am going through simulations at the
- HTML Academy, self-study on
- learn.js
+ HTML Academy, self-study on
+ learn.js
and practice on the
- Codewars
- platform. And just recently I finished Stage#0 on
+ Codewars
+ platform.
And just recently I finished Stage#0 on
the RSSchool.
-
+
+
+ alt="htmlacademy">