• Corsi
  • Compilatore di codice
  • Discuti
  • Prezzi
  • Squadre
Menu
0

Help me in spotting the bug in this code

This is a famous GFG problem : https://www.geeksforgeeks.org/subset-sum-problem-dp-25/ I am using the right algorithm but I can't figure out where the code is failing. Code : https://code.sololearn.com/cCLZfsUYoedu/?ref=app

pythonrecursiondynamicpython3programmingbacktrackingtabulation
2nd Sep 2022, 9:04 PM
Meghraj
Meghraj - avatar
1 Risposta
0
instead of dp = [[0]*(k+1)]*(n+1) replace by this dp = [[0 for _ in range(k+1)] for _ in range(n+1)] hope it helps
25th Aug 2023, 7:02 PM
Han Tong
Han Tong - avatar

Hai spesso domande come questa?

Impara in modo più efficiente, gratuitamente:

  • Introduzione a Python

    7,1M studenti

  • Introduzione a Java

    4,7M studenti

  • Introduzione a C

    1,5M studenti

  • Introduzione a HTML

    7,5M studenti

Vedi tutti i corsi
Popolare oggi
Where is the bug?
3 Votes
Is it possible to convert .zip file to apk? If yes, how??
1 Votes
Pointers cpp
2 Votes
I think the heart system is ridiculous, 5 hearts that refill after like 5 hours? That is really just crazy to me.
1 Votes
What do you think of this code and what are your suggestions for developing and modifying it?, How can I develop myself more?
0 Votes
How to add two strings together in ts or css
1 Votes
Why can’t I use double “ in python?
0 Votes
Is pro worth the money ?
1 Votes
2 cases not correct what's the problem
1 Votes
Drawing images in java
2 Votes