Difference between revisions of "PromptCode/3"
Jump to navigation
Jump to search
| Line 14: | Line 14: | ||
return dict(reversed(pairs)) | return dict(reversed(pairs)) | ||
</pre> | </pre> | ||
| + | |||
| + | |||
| + | Hint 1: {{censored | The full function name is tuples_to_dict}} | ||
| + | |||
| + | Hint 2: {{censored | Go to [[PromptCode/3a]] for an expanded code}} | ||
Revision as of 15:47, 21 April 2026
PromptCode challenge:
- Given the following code, use an LLM to generate a snippet of code that will function the same.
- You can't cheat, which are basically:
- Feed this code to an LLM and ask it to output the exact same thing.
- Write this code in other languages and ask an LLM to rewrite in Python.
- Prompt LLM the logic of this code line-by-line.
- You can prompt as many time as you want.
- Easy mode: conversation style
- Hard mode: reset to new conversation or 'edit' the message sent to LLM for every prompt
def f(pairs):
return dict(reversed(pairs))
Hint 1: The full function name is tuples_to_dict
Hint 2: Go to PromptCode/3a for an expanded code