Skip to main content
✏️ Code CompletionC+ C++ Medium+20 XP

Smart Pointer

Complete the smart pointer type for exclusive ownership.

✏️ Fill in the blank
auto ptr = make_unique<MyClass>();
// ptr is a ___<MyClass>

✏️ Type the missing code: