Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Code Addition Request]: Adding more problems in Basic DP Problems #812

Closed
2 of 3 tasks
siri-chandana-macha opened this issue Oct 23, 2024 · 2 comments · Fixed by #857
Closed
2 of 3 tasks

[Code Addition Request]: Adding more problems in Basic DP Problems #812

siri-chandana-macha opened this issue Oct 23, 2024 · 2 comments · Fixed by #857
Assignees
Labels
Contributor Denotes issues or PRs submitted by contributors to acknowledge their participation. gssoc-ext hacktoberfest level1 Status: Assigned💻 Indicates an issue has been assigned to a contributor. WoB'24 (Winter of Blockchain) Contributions or tasks specific to the Winter of Blockchain 2024 event, focusing on blockchain-relat

Comments

@siri-chandana-macha
Copy link
Contributor

siri-chandana-macha commented Oct 23, 2024

Have you completed your first issue?

  • I have completed my first issue

Guidelines

  • I have read the guidelines
  • I have the link to my latest merged PR

Latest Merged PR Link

N/A

Project Description

1. find the N-th Tribonacci number
Problem: Similar to the Fibonacci sequence, the Tribonacci sequence is defined as dp[n] = dp[n-1] + dp[n-2] + dp[n-3]. Given n, find the N-th Tribonacci number.

2. Subset Sum
Problem: Given a set of integers, find if there is a subset with sum equal to a given number.

3. 0/1 Knapsack Problem
Problem: Given n items with weight and value, find the maximum value you can carry in a knapsack of capacity W.

4. Paint House (with Colors Constraint)
Problem: You are tasked with painting houses. Each house can be painted in one of k colors, and no two adjacent houses can have the same color. Find the minimum cost to paint all houses.

Full Name

siri-chandana-macha

Participant Role

  • gssoc-extd
  • hacktoberfest
  • wob
Copy link

🙌 Thank you for bringing this issue to our attention! We appreciate your input and will investigate it as soon as possible.

Feel free to join our community on Discord to discuss more!

@UTSAVS26 UTSAVS26 added Contributor Denotes issues or PRs submitted by contributors to acknowledge their participation. Status: Assigned💻 Indicates an issue has been assigned to a contributor. WoB'24 (Winter of Blockchain) Contributions or tasks specific to the Winter of Blockchain 2024 event, focusing on blockchain-relat level1 gssoc-ext hacktoberfest labels Oct 23, 2024
Copy link

github-actions bot commented Nov 5, 2024

✅ This issue has been closed. Thank you for your contribution! If you have any further questions or issues, feel free to join our community on Discord to discuss more!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Contributor Denotes issues or PRs submitted by contributors to acknowledge their participation. gssoc-ext hacktoberfest level1 Status: Assigned💻 Indicates an issue has been assigned to a contributor. WoB'24 (Winter of Blockchain) Contributions or tasks specific to the Winter of Blockchain 2024 event, focusing on blockchain-relat
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants