User contributions
Jump to navigation
Jump to search
- 21:30, 21 April 2026 diff hist +22 PromptCode/6 current
- 21:30, 21 April 2026 diff hist +1 PromptCode/5 current
- 21:30, 21 April 2026 diff hist +8 PromptCode/5
- 21:29, 21 April 2026 diff hist +15 PromptCode/4 current
- 21:29, 21 April 2026 diff hist -504 PromptCode/3a current
- 21:29, 21 April 2026 diff hist +22 PromptCode/3 current
- 21:28, 21 April 2026 diff hist +20 PromptCode/2 current
- 21:28, 21 April 2026 diff hist +20 PromptCode/1 current
- 21:26, 21 April 2026 diff hist +106 PromptCode current
- 21:26, 21 April 2026 diff hist +60 PromptCode
- 21:25, 21 April 2026 diff hist -1 PromptCode
- 21:25, 21 April 2026 diff hist +27 N PromptCode Created page with "{{PromptCode Instructions}}"
- 21:24, 21 April 2026 diff hist +370 N PromptCode/6 Created page with "{{PromptCode Instruction}} <pre> def sc(lst, t, lo=0, hi=None): if hi is None: hi = len(lst) - 1 if lo > hi: return -1 mid = (lo + hi) // 2 if..."
- 21:23, 21 April 2026 diff hist +345 N PromptCode/5 Created page with "{{PromptCode Instruction}} <pre> def tr(n, memo={}): if n in memo: return memo[n] if n <= 2: return n memo[n] = tr(n-1, memo) + tr(n-2, memo) + tr..."
- 21:23, 21 April 2026 diff hist -504 PromptCode/2
- 21:21, 21 April 2026 diff hist +117 Template:PromptCode Instruction current
- 16:28, 21 April 2026 diff hist -532 PromptCode/1
- 16:04, 21 April 2026 diff hist +44 PromptCode/2
- 15:59, 21 April 2026 diff hist -436 PromptCode/4
- 15:58, 21 April 2026 diff hist +4 Template:PromptCode Instruction
- 15:58, 21 April 2026 diff hist +7 Template:PromptCode Instruction
- 15:58, 21 April 2026 diff hist +61 PromptCode/3
- 15:58, 21 April 2026 diff hist -566 PromptCode/3
- 15:57, 21 April 2026 diff hist +530 N Template:PromptCode Instruction Created page with "'''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..."
- 15:52, 21 April 2026 diff hist +6 MediaWiki:Common.css current
- 15:51, 21 April 2026 diff hist +1 PromptCode/2
- 15:51, 21 April 2026 diff hist +129 PromptCode/2
- 15:47, 21 April 2026 diff hist +135 PromptCode/3
- 15:47, 21 April 2026 diff hist -134 PromptCode/3a
- 15:46, 21 April 2026 diff hist -16 MediaWiki:Common.css
- 15:46, 21 April 2026 diff hist -28 MediaWiki:Common.css
- 15:45, 21 April 2026 diff hist +2 PromptCode/3a
- 15:45, 21 April 2026 diff hist +1 PromptCode/3a
- 15:45, 21 April 2026 diff hist -4 Template:Censored current
- 15:44, 21 April 2026 diff hist +131 PromptCode/3a
- 15:43, 21 April 2026 diff hist +452 N MediaWiki:Common.css Created page with "→CSS placed here will be applied to all skins: .censored:hover { color: inherit; background-color: inherit !important; } .censored:hover { background-color: inheri..."
- 15:41, 21 April 2026 diff hist +7 Template:Censored
- 15:40, 21 April 2026 diff hist +525 N Template:Censored Created page with "<span class="censored">{{{1|}}}</span> <noinclude> {{C|ข้อความนี้ถูกเซ็นเซอร์ ซึ่งในปัจจุบัน กา..."
- 15:36, 21 April 2026 diff hist +20 PromptCode/4
- 15:34, 21 April 2026 diff hist +532 PromptCode/3a
- 15:34, 21 April 2026 diff hist +532 PromptCode/3
- 15:34, 21 April 2026 diff hist +532 PromptCode/2
- 16:33, 20 April 2026 diff hist +681 N PromptCode/4 Created page with "'''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..."
- 16:23, 20 April 2026 diff hist +34 PromptCode/1
- 16:20, 20 April 2026 diff hist +498 PromptCode/1
- 16:01, 20 April 2026 diff hist -52 PromptCode/1
- 15:25, 20 April 2026 diff hist +13 PromptCode/3a
- 15:25, 20 April 2026 diff hist +138 N PromptCode/3a Created page with "def f(pairs): result = {} for key, value in pairs: if key not in result: result[key] = value return result"
- 15:24, 20 April 2026 diff hist +59 N PromptCode/3 Created page with "<pre> def f(pairs): return dict(reversed(pairs)) </pre>"
- 14:58, 20 April 2026 diff hist +127 N PromptCode/2 Created page with "<pre> def f(numbers): unique = sorted(set(numbers), reverse=True) return unique[1] if len(unique) >= 2 else None </pre>"