BuildlyBuildly
DashboardExercisesProfileHelp
Back to all

Practice: Lists

Drills tagged with this skill, unpassed first. Pass them all to mark the skill ready for scenarios.

Module 1: Python Programming

0/3 done
Exercises (0/3)
  • 1
    Sum the Even Numbers
    Write sum_evens(numbers) that returns the sum of the even numbers in a list. Empty list → 0.
    5 min· 10 XP
  • 2
    Find the Maximum
    Write find_max(numbers) that returns the largest number in the list. If the list is empty, return None.
    5 min· 10 XP
  • 3
    Remove Duplicates (Preserve Order)
    Write remove_duplicates(items) that returns a new list with duplicates removed, keeping the order of first appearance.
    5 min· 10 XP