← Pointer Manipulation

Micro-Drill #13 — Convert to lowercase

Pointer Manipulation Target: 5s

Case normalization is a preprocessing step for anagram detection and string matching.

s.lower()
# Manual: chr(ord(c) + 32)

Type it from memory. Go.

Practice Problems

← Micro #12 Micro #14 →