GFG | Problem of The Day : Product of Primes (2 Solutions)

  Рет қаралды 719

Learn Together

Learn Together

Күн бұрын

Пікірлер: 10
@vishalkumar-ku6pp
@vishalkumar-ku6pp 2 жыл бұрын
sir line no 46 long number why we have taken and what would be the value of that 🖐🏻🖐🏻🖐🏻🖐🏻🖐🏻🖐🏻🖐🏻🖐🏻
@molyoxide8358
@molyoxide8358 2 жыл бұрын
Sir I wrote the same Sieve of Eratosthenes in C++ but it gave TLE. So could you provide error free solution in C++
@learntogether7741
@learntogether7741 2 жыл бұрын
Sorry for the late reply, I think many c++ answers are available in the discuss section of this question.
@molyoxide8358
@molyoxide8358 2 жыл бұрын
@@learntogether7741 sir but i wrote the same java solution in C++ there it didn't work
@learntogether7741
@learntogether7741 2 жыл бұрын
@@molyoxide8358 I will check it.
@molyoxide8358
@molyoxide8358 2 жыл бұрын
@@learntogether7741 Did you check it sir?
@learntogether7741
@learntogether7741 2 жыл бұрын
@@molyoxide8358 class Solution{ const int MOD=1000000007; bool prime[1000001]; vector p; void sieve(){ prime[0]=prime[1]=1; for(int i=2;1LL*i*i
@Mr_Clumsee
@Mr_Clumsee 2 жыл бұрын
python sol???
@learntogether7741
@learntogether7741 2 жыл бұрын
Python solution is getting TLE import math class Solution: def isPrime(self, num): for i in range(2, math.floor(num ** (1 / 2)) + 1): if num % i == 0: return False return True def primeProduct(self, L, R): # code here if L == 1: L = 2 product = 1 MOD = 1000000007 for i in range(L, R + 1): if self.isPrime(i): product = (product * i) % MOD return product You can try my sieve approach in Python and check if its giving TLE or passing. Thank you
@Mr_Clumsee
@Mr_Clumsee 2 жыл бұрын
Thanks bro ♥️
GFG | Problem of the Day : Find Length of Loop
10:40
Learn Together
Рет қаралды 842
Product of Primes | Problem of the day: 24/04/22 | Siddharth Hazra
11:58
GeeksforGeeks Practice
Рет қаралды 644
Don't underestimate anyone
00:47
奇軒Tricking
Рет қаралды 17 МЛН
Симбу закрыли дома?! 🔒 #симба #симбочка #арти
00:41
Симбочка Пимпочка
Рет қаралды 4,7 МЛН
5 Simple Steps for Solving Any Recursive Problem
21:03
Reducible
Рет қаралды 1,2 МЛН
How Senior Programmers ACTUALLY Write Code
13:37
Thriving Technologist
Рет қаралды 1,6 МЛН
GFG | Problem of the Day : Super Primes
12:15
Learn Together
Рет қаралды 1 М.
How to STUDY so FAST it feels like CHEATING
8:03
The Angry Explainer
Рет қаралды 1,8 МЛН
Coding Was HARD Until I Learned These 5 Things...
8:34
Elsa Scola
Рет қаралды 687 М.
Eventhough it was messy, CHECKMATED
8:45
Learn Together
Рет қаралды 43
New divisibility rule! (30,000 of them)
26:51
Stand-up Maths
Рет қаралды 319 М.
GFG | Problem Of the Day : K-Ary Tree
9:08
Learn Together
Рет қаралды 790
5 Good Python Habits
17:35
Indently
Рет қаралды 624 М.
Don't underestimate anyone
00:47
奇軒Tricking
Рет қаралды 17 МЛН