Skip to main content

Practice ยท 3 of 3

Resolution Verifier

Real repos contain multiple conflicts. Write hasUnresolved(text) returning true if any conflict markers remain. Markers to detect: a line starting <<<<<<< , a line exactly ======= (7 equals), a line starting >>>>>>> . A line of code containing === (like if (a === b)) is NOT a marker.

Difficulty: intermediate

Back to lesson: Practice: Conflict Resolution โ€” Practice