PlayList 클래스에 추가할 메서드 1. 플레이리스트의 재생 시간 합산int PlayList::get_total_duration() { int total_duration = 0; for (auto song_ptr : tracks) { total_duration += song_ptr->get_duration(); } return total_duration;} 2. 플레이리스트 내 특정 아티스트의 노래 목록vector PlayList::find_songs_by_artist(string artist_name) { vector result; for (auto song_ptr : tracks) { if (song_ptr->get_artist() == ..