BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//American Young Coder - ECPv6.10.1.1//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:American Young Coder
X-ORIGINAL-URL:https://www.ayclogic.com
X-WR-CALDESC:Events for American Young Coder
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-Robots-Tag:noindex
X-PUBLISHED-TTL:PT1H
BEGIN:VTIMEZONE
TZID:America/Los_Angeles
BEGIN:DAYLIGHT
TZOFFSETFROM:-0800
TZOFFSETTO:-0700
TZNAME:PDT
DTSTART:20250309T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20251102T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250729T190000
DTEND;TZID=America/Los_Angeles:20250729T200000
DTSTAMP:20260418T225123
CREATED:20250730T030607Z
LAST-MODIFIED:20250730T030607Z
UID:29883-1753815600-1753819200@www.ayclogic.com
SUMMARY:7 PM – Intro to Competitive Programming – Darin
DESCRIPTION:What We Did Today:\n\nReviewed dynamic programming\nWent through a couple problems include number of steps (DP/Recursion) and the Mad Scientist problem (greedy)\n\nHomework:\n\nGo through this problem (we will discuss this in class next week): \n/**\n * Problem Statement:\n * You are given a list of coin denominations and a target amount.\n *\n * Your task: Count how many different ways you can make up that amount using unlimited coins from the list.\n *\n * You may use each coin as many times as you want.\n *\n *  Input:\n * An integer amount (amount ≥ 0)\n *\n * An array coins[] of positive integers\n *\n *  Output:\n * An integer representing the number of distinct combinations to make up the amount\n *\n *  Examples:\n * Example 1:\n * plaintext\n * Copy\n * Edit\n * coins = [1\, 2\, 5]\n * amount = 5\n * ✅ Output: 4\n *\n * ✅ Explanation:\n *\n * [1+1+1+1+1]\n *\n * [1+1+1+2]\n *\n * [1+2+2]\n *\n * [5]\n *\n * Example 2:\n * plaintext\n * Copy\n * Edit\n * coins = [2]\n * amount = 3\n * ✅ Output: 0 (you can’t make 3 using only 2s)\n */\n\n\nNotes:\nYou can reach out to me at ddjapri@ayclogic.com if you have any questions! \nYou can find class notes here.
URL:https://www.ayclogic.com/event/7-pm-intro-to-competitive-programming-darin-16/
CATEGORIES:Introduction To Java,Java
END:VEVENT
END:VCALENDAR