Go: Fibonacci Sequence Rate Limiter

A fibonacci with modulo sequence is defined for a given modulo, mod, as follows: fib[x] = (fib[x – 1] + fib[x –…

Go: Multiplier Batch Generation

Implement a server that generates a multiplication table a given integer by adding the value to the previous value in the sequence…

Go: Reversing TCP Server

Implement a TCP server that accepts messages in the form of a string. Reverse the messages and return them to the client.…

Go: Custom String Sorting

Sort a set of strings based on the following factors: An odd length string should precede an even length string. If both strings…

Go: HTTP server

Implement an HTTP server that has three routes and maintains a database of the world’s largest lakes. The first route runs a handler postHandler which accepts…