LeetCode : 763. Partition Labels(11/29:update)
1回目function partitionLabels(s: string): number[] { let list: Map<string, { start: number, last: number }> = new Map<string, { start: number, last: number }>(); const len: number = s.length; for (let i = 0; i < len; i++) { co