I was recently reading this post inwhich the amazing Ady Ngom was disscussing different ways to solve the common FizzBizz challenge given in interv...
For further actions, you may consider blocking this person and/or reporting abuse
Language: ReasonML
Sketch: sketch.sh/s/XABe2ghxBqncDWTTKpNK8n/
Language: SSTNPL
Code:
Other/Info: Figured I'd contribute something a bit more obscure. :) SSTNPL is an architecture-specialized programming language thats used with my SBTCVM ternary computer simulator. Yes, its a bit clunkier-looking than most of the examples here, but mainly down to it using labeled GOTOs...
Very interesing, thank you for sharing. Never heard of SSTNPL and even a quick google search doesn't render many results. 👍 Thanks!
SSTNPL is somthing i put together for SBTCVM specifically. its kinda somehwhere between an assembler (as it compiles to SBTCVM's assembly language), and C, with a bit of a primitive syntax, and a fairly static structure. Its simple, but it does have a few neat features like 2-axis array-like tables, and a module system.
as far as SBTCVM itself, the blog's about page has a good overview of it:
sbtcvm.blogspot.com/p/about.html
Language: Smalltalk
Code:
👏👏👏, never used that language.
Language: Emacs Lisp
Code:
Language: Erlang
Code:
Short version, generate a list (of strings and integers), don’t bother printing:
Full version, print one term per line. Here we have to convert integers to strings:
Language: Lua
Code:
Other/info: I guess I'll start the challenge off.
This is a pretty simple function in lua of the FizzBuzz challenge.
Language: OCaml
Code:
Interesting! What kind of work is OCaml used for? 😊
Compilers, Proof Assistants, Static Verification Tools. Facebook uses it a lot under the hood.
Interesting.
Welcome to dev.to btw (saw you joined today).
I've learnt a lot since this old thread, here's how i'd attempt this question in an interview today:
Language: JavaScript
Code: gist.github.com/reinhart1010/d2b81...
Other/Info: The above code execute
console.log
command for each number. And yes, this is compiled on JSFuck based on the original code:Trying to decode the first snippet on JSUnFuck will likely to cause browsers to hang.
Interestingly, this one can be exported to C with minimal modifications:
JavaScript should be welcoming to my folks who are currently learning C thanks to similarity in syntaxes. (If you're reading this, good luck in facing your mid-term exams next week!)
Language: Java (8 and above)
Code:
I did write solutions in Javascript and Racket for a similar challenge a while ago.
Since nobody has done Javascript yet, here's a crazy implementation.
Consider how easy it is to extend to print
'fazz'
for multiples of 7.Here's my implementation in Racket
The
print-list
function is a bit redundant, since(map fizzbuzz (range 1 101))
will already print the resulting list to the console.Language: Javascript
Code:
Language: Haskell
Code:
Language: Python
Code: