ngn/apl
1 program
Added 2026-03-17T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: ngnapl
Provenance: commit acee435370 · authored 2026-03-17T04:56:43+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Quicksort and Array Operations
Provenance: commit acee435370 · authored 2026-03-17T04:56:43+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
⍝ Quicksort in ngn/apl
qsort←{
1≥≢⍵:⍵
pivot←⍵[⌊2÷⍨≢⍵]
(∇⍵[⍸⍵<pivot]),pivot,(∇⍵[⍸⍵>pivot])
}
⍝ Test with unsorted array
qsort 3 1 4 1 5 9 2 6 5 3 5
⍝ Sum of first 10 integers
+/⍳10
⍝ Outer product: multiplication table
∘.×⍨⍳5