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. ⛳️
- Host: GitHub
- URL: https://github.com/jakzo/codesignal-golfing-guide
- Owner: jakzo
- Created: 2017-07-08T04:14:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-28T12:13:03.000Z (about 7 years ago)
- Last Synced: 2025-03-03T08:45:37.789Z (12 months ago)
- Topics: codefights, codegolf
- Homepage:
- Size: 43.9 KB
- Stars: 8
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)