An open API service indexing awesome lists of open source software.

https://github.com/jakzo/codesignal-golfing-guide

⛳️ Collection of code golf tips specific to CodeSignal. ⛳️
https://github.com/jakzo/codesignal-golfing-guide

codefights codegolf

Last synced: 4 months ago
JSON representation

⛳️ Collection of code golf tips specific to CodeSignal. ⛳️

Awesome Lists containing this project

README

          

# CodeSignal Golfing Guide
*Collection of code golf tips specific to CodeSignal (where whitespace is free and input/output is performed with functions).*

## Language Cheat Sheets (in progress/incomplete)
These pages contain golfing idioms and tips for each language.

- [JavaScript](languages/javascript.md)
- [Python](languages/python.md)
- [Java](languages/java.md)
- [C#](languages/cs.md)
- [R](languages/r.md)
- [Lua](languages/lua.md)
- [Haskell](languages/haskell.md)
- [Kotlin](languages/kotlin.md)
- [Erlang](languages/erlang.md)
- [Common Lisp](languages/common-lisp.md)
- [Clojure](languages/clojure.md)
- [Elixir](languages/elixir.md)
- [CoffeeScript](languages/coffeescript.md)

## Example Challenges
These are simple challenges which showcase the shortest way to perform some operation.

- [Array Iterate](examples/array-iterate.md)
- [Power](examples/power.md)
- [Log 2](examples/log-2.md)
- [While Loop](examples/while.md)
- [Transliterate](examples/transliterate.md)
- [Char at Index](examples/char-at-index.md)
- [Regex Replace](examples/regex-replace.md)
- [Regex Match](examples/regex-match.md)
- [String Concatenation](examples/string-concatenation.md)
- [Square Root](examples/square-root.md)
- [Int to Str](examples/int-to-str.md)
- [Hypotenuse](examples/hypotenuse.md)
- [Square](examples/square.md)