New pages
Jump to navigation
Jump to search
- 21:25, 21 April 2026 PromptCode (hist) [192 bytes] Srakrn (talk | contribs) (Created page with "{{PromptCode Instructions}}")
- 21:24, 21 April 2026 PromptCode/6 (hist) [392 bytes] Srakrn (talk | contribs) (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 PromptCode/5 (hist) [354 bytes] Srakrn (talk | contribs) (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...")
- 16:33, 20 April 2026 PromptCode/4 (hist) [280 bytes] Srakrn (talk | contribs) (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:25, 20 April 2026 PromptCode/3a (hist) [179 bytes] Srakrn (talk | contribs) (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 PromptCode/3 (hist) [243 bytes] Srakrn (talk | contribs) (Created page with "<pre> def f(pairs): return dict(reversed(pairs)) </pre>")
- 14:58, 20 April 2026 PromptCode/2 (hist) [349 bytes] Srakrn (talk | contribs) (Created page with "<pre> def f(numbers): unique = sorted(set(numbers), reverse=True) return unique[1] if len(unique) >= 2 else None </pre>")
- 14:54, 20 April 2026 PromptCode/1 (hist) [487 bytes] Srakrn (talk | contribs) (Created page with "<pre> def cg(intervals: list[tuple[int, int]]) -> int: if len(intervals) <= 1: return 0 sorted_intervals = sorted(intervals, key=lambda x: (x[0], x[1]))...")
- 17:25, 17 April 2026 Notepad/Small Bite Soup (hist) [2,608 bytes] Srakrn (talk | contribs) (Created page with "ต้มจิ๋วเนื้อ is simply three words combined together: ต้ม means clear soup, จิ๋ว means tiny, and เนื้อ is beef. It's the best t...")