Блог пользователя Namika

Автор Namika, история, 5 недель назад, По-английски

I have an unrefusable offer to you, here it is

Do you have extra time?

Are you looking for an investment?

Invest in me.

You provide me with high quality problems, I solve them. Isn't that simple?

If I couldn't solve it, you explain it to me.

What do you gain from this? Well, you Gain skill at explaining things, I know I know, it looks like a scam, and it is.

But who cares?

if you are interested, drop a comment and I will DM you.

BTW, I'm serious, I can dedicate up to 3-4 hours daily in order to improve.

IMPORTANT : You don't need to give me 3-4 hours from your time, as I said, you provide me with problems, I solve them, only if I can't solve them, maybe then you try to explain it to me.

hamster crying

Полный текст и комментарии »

  • Проголосовать: нравится
  • +56
  • Проголосовать: не нравится

Автор Namika, история, 5 месяцев назад, По-английски

This cheater elour posted div 2 B solution in a blog while the contest is running ,now they are cheating on Codeforces without hesitation in front of everyone.

i saw this blog that has a very interesting idea to reduce cheaters. Additionally, there was a blog about adding a phone number to verify accounts. These ideas could actually reduce the number of cheaters on this site because cheating is ruining it.

Thank you telegram indians, for ruining this website for some rupees.

Полный текст и комментарии »

  • Проголосовать: нравится
  • +17
  • Проголосовать: не нравится

Автор Namika, история, 6 месяцев назад, По-английски

i was solving this problem and i noticed that when i create a frequency array of sorted list its much faster than doing it on a unsorted list

this is my submession with sorted, when i submit the same code without sorting it gives TL.

then i noticed that when i loop on a sorted list is much faster than looping on a unsorted list with the same elements

`

import time import random

x = [] counter =1 a = 0 for i in range(10**6):

x.append(counter)

a+=1

if a == 2:

    a=0

    counter +=1

x = random.sample(x,len(x))

now = time.time()

freq1 = {}

for i in x:pass

print("done 1")

print(time.time() — now)

print("-----------")

x = sorted(x)

now = time.time()

freq1 = {}

for i in x:pass

print("done 2")

print(time.time() — now) ~~~~~

` ~~~~~

it prints

done 1

0.16895198822021484

done 2

0.012014389038085938

the first number is the time of looping on the list while its unsorted and the second one is the time after sorting

can any one explain why this happens

Полный текст и комментарии »

  • Проголосовать: нравится
  • -2
  • Проголосовать: не нравится

Автор Namika, история, 8 месяцев назад, По-английски

Sometimes, I solve a problem without understanding how the solution worked, and I can't prove that it's correct. Is that normal? I don't feel like I understand what I did In The Code

Полный текст и комментарии »

  • Проголосовать: нравится
  • +13
  • Проголосовать: не нравится

Автор Namika, история, 9 месяцев назад, По-английски

Sometimes i open the tutorial and i understand nothing and i feel like i will be stuck in this problem for the rest of life, what should i do to avoid this?

Полный текст и комментарии »

  • Проголосовать: нравится
  • +3
  • Проголосовать: не нравится

Автор Namika, история, 11 месяцев назад, По-английски

How can I learn concepts that I don't even know exist?

Is it through trying to solve problems and searching for the solution or should I try to learn all the concepts and keep searching?

Полный текст и комментарии »

  • Проголосовать: нравится
  • +2
  • Проголосовать: не нравится