Viewing profile — kaikalii
kaikalii
HN member- Joined
- Thu, Dec 02, 2021, 4:51 PM UTC
- HN karma
- 53
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About kaikalii
No profile information was provided.
Recent public activity
-
comment
Comment #37692693
That's some dedication! You can indeed get the maximum item in an array with `/↥`. Here is my fizzbuzz solution: ( https://uiua.org/pad?src=fizzbuzz%20%E2%86%90%20%28%0A%20%20... )…
-
comment
Comment #37683092
Oh hey, I made this. Cool to see it at the top of HN!
-
comment
Comment #35968695
trait Namer { fn first(&self) -> String; fn last(&self) -> String; // You can put this here if you want `namer.name()` fn name(&self) -> String { format!("{} {}", self.first(), sel…