Skip to content

feat: add new post on Dynamic Programming#588

Draft
giovannymassuia wants to merge 5 commits intomainfrom
blog/post-dynamic-programming
Draft

feat: add new post on Dynamic Programming#588
giovannymassuia wants to merge 5 commits intomainfrom
blog/post-dynamic-programming

Conversation

@giovannymassuia
Copy link
Member

📚 Description

🔗 Linked issue

❓ Type of change

  • ✨ New feature
  • 🐞 Bug fix
  • 👌 Enhancement (improving an existing functionality like performance)
  • 📖 Documentation (updates to the documentation or readme)
  • ⚠️ Breaking change

📝 Checklist

  • I have linked an issue or discussion.
  • I have updated the documentation accordingly.
  • I have performed a self-review of my code.
  • I implemented tests for new features.
  • I tested the features already implemented.

@github-actions

This comment has been minimized.

├───┼───┼───┼───┤
│ 1 │ 3 │ 6 │ 10│
└───┴───┴───┴───┘
```
Copy link
Member Author

@giovannymassuia giovannymassuia Dec 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not rendering correctly:

image

├───┼───┼───┤
│ │ │ E │
└───┴───┴───┘
```
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not rendering correctly:

image


return dp[n];
}
```
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add a table and fill it step by step.

// Uso:
const result = coinChange([1, 3, 4], 6);
console.log(result === Infinity ? -1 : result); // 2
```
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add graph


return dp[amount] === Infinity ? -1 : dp[amount];
}
```
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add table

@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.

@github-actions
Copy link

github-actions bot commented Feb 6, 2026

🚀 Preview Url 🚀

https://aa9669d1.blog-c3.pages.dev

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants