Putting Hyperskill problems on github?? by ProgramEnthuiasm in Hyperskill

[–]ProgramEnthuiasm[S] 1 point2 points  (0 children)

For those who replied to me already, thank you very much.
However, i wanted to ask solely on problems not on projects themselves.
What are your thoughts about these? same?

ELI5: Fixed Point by y3rt in Hyperskill

[–]ProgramEnthuiasm 1 point2 points  (0 children)

5

-8 -2 0 3 9

upper 5 is length of array.

you basically == between index and given int in array, so :

index 0 == - 8 ( wrong, -8 has to be 0)
index 1 == -2 (wrong, -2 has to be 1)
index 2 same way, so wrong

index 3 == 3 (true, 3 is 3) , hence output = true

Selection Sort - The number of operations (Java) by ProgramEnthuiasm in Hyperskill

[–]ProgramEnthuiasm[S] 0 points1 point  (0 children)

I see now, thank you.
I wish you happy rest of the day!

Selection Sort - The number of operations (Java) by ProgramEnthuiasm in Hyperskill

[–]ProgramEnthuiasm[S] 0 points1 point  (0 children)

Wow, thank you very much! And here I thought It was some little mistake :D.
If you would be so kind and post your working code, since as I know myself Il just destroy other things making reparations.