Computer Science - Algorithms - Insertion sort - Sort Your Hand of Cards
Simulates sorting a hand of playing cards. Cards dealt one by one: 7, 3, 9, 2, 5. For each new card, student inserts it into the correct position in their sorted hand. Card 1: [7] (one card is already 'sorted'). Card 2 (3): insert before 7 → [3, 7]. Card 3 (9): insert after 7 → [3, 7, 9]. Card 4 (2)