Beginners guide to Dynamic Programming
Advent of code in Assembly
In case you are not familiar with AdventOfCode, it is a christian calender which gives you different coding problems through out the month of december.
// You can copy this code block
interface EmojiProps {
label?: string;
emoji: string;
}
// Note the highlighted rows below
export default function Emoji({ label, emoji, ...props }: EmojiProps) {
return (
<span
role="img"
aria-label={label || ""}
aria-hidden={label ? "false" : "true"}
{...props}
>
{emoji}
</span>
);
}