All Questions
3 questions
1
vote
2
answers
282
views
Musical graph algorithm, with an inlined lookup helper function
I am working with bit strings in clojure. My question is less about performance and more about how one should go about it (in particular see the last inlined version)
The tonnetz-array represents an ...
2
votes
2
answers
353
views
Computing pairwise bitwise OR in a list of bit-strings
I am trying to solve this problem using Clojure:
You are given a list of \$N\$ people who are attending ACM-ICPC World
Finals. Each of them are either well versed in a topic or they are
not. ...
4
votes
1
answer
1k
views
Connect Four: Bitboard checking algorithm
I'm rather new to Clojure and so I decided to program a Connect Four for fun and learning.
The code below is a Clojure implementation of this bitboard algorithm.
The whole code can be found here: ...