This is how in #go we remove an element from a collection
func rm(i int, lists[]*ListNode) []*ListNode {
return append(lists[:i], lists[i+1:]...)
}
Usually its a library call.
This is how in #go we remove an element from a collection
func rm(i int, lists[]*ListNode) []*ListNode {
return append(lists[:i], lists[i+1:]...)
}
Usually its a library call.
My another hobby project, made with #llm / #codex: converter of #wikipedia dumps into #man / #roff format, on #rust (because I love performance): for a #terminal, #offline reading. #love it, still fixing many markup cases, but mostly its readable already https://gitlab.com/vitaly-zdanevich/wiki2man_on_rust
Wrote about it at https://diff.wikimedia.org/2026/06/25/i-built-the-convertor-from-wikipedia-dumps-to-man-roff-format-for-offline-reading-in-a-terminal/
