Tarefa
📝 **Pergunta:** Construa um \`length(x)\` usando \`@singledispatch\` que retorne:\n- para str: \`len(x) * 2\`\n- padrão (qualquer outro tipo): \`-1\`\nPrint \`length("hi")\` e \`length(42)\`.\nEsperado:\n4\n-1
📋 Escolha a resposta certa.
💡 **Dica:** Releia a teoria acima se não tiver certeza.