Problem Statement
Why are CRDTs useful in AP systems?
Explanation
CRDT types define associative, commutative, and idempotent merge operations. Divergent states can be merged deterministically to the same result across replicas without coordination.
Code Solution
SolutionRead Only
G-Counter: state = vector; merge = element-wise max; value = sum
