This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Now that we know who you are, I know who I am. [email protected] I'm not a mistake! It all makes sense! In a [email protected] comic, you know how you can tell who the arch-villain's going to be? [email protected] He's the exact opposite of the hero. And most times they're friends, like you and me! I should've known way back when... You know why, David? [email protected] Because of the kids. They called me Mr Glass. | |
The path of the righteous man is beset on all sides by the iniquities of the selfish and the tyranny of evil men. Blessed is he who, in the name of charity and good will, [email protected] shepherds the weak through the valley of darkness, for he is truly his brother's keeper and the finder of lost children. And I will strike down [email protected] upon thee with great vengeance and furious anger those who would [email protected] attempt to poison and destroy My brothers. And you will know My name is the Lord when I lay My vengeance upon thee. | |
Look, just because I don't be givin' no man a foot massage [email protected] don't make it |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn fizzbuzziness [num] | |
(str "" (when (== 0 (mod num 3)) "Fizz") (when (== 0 (mod num 5)) "Buzz"))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Integer | |
def fizzbuzziness | |
"#{self % 3 == 0 ? 'Fizz' : ''}#{self % 5 == 0 ? 'Buzz' : ''}" | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <sstream> | |
using namespace std; | |
string fizzbuzziness(int num) { | |
string fizz = num % 3 == 0 ? "Fizz" : ""; | |
string buzz = num % 5 == 0 ? "Buzz" : ""; | |
string initString = ""; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def fizzbuzziness(num): | |
return (f"{('', 'Fizz')[num % 3 == 0]}{('', 'Buzz')[num % 5 == 0]}") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def fizzbuzziness(num): | |
return (f"{'Fizz' if num % 3 == 0 else ''}{'Buzz' if num % 5 == 0 else ''}") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(() => { | |
const fizzbuzziness = | |
num => `${ num % 3 === 0 ? 'Fizz' : '' }${ num % 5 === 0 ? 'Buzz' : '' }` | |
})() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// num is a whole number Integer | |
(const fizzbuzziness = (num) => { | |
if((num % 3 === 0) && (num % 5 === 0)) { | |
return 'FizzBuzz' | |
} else if(num % 3 === 0) { | |
return 'Fizz' | |
} else if(num % 5 === 0) { | |
return 'Buzz' | |
} else { | |
return '' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(() => { | |
'use strict' | |
const fizzbuzziness = (num) => { | |
const tbl = Object({ 'Fizz': (num % 3 === 0), 'Buzz': (num % 5 === 0) }) | |
return Object | |
.keys(tbl) | |
.filter(key => tbl[key]) | |
.reduce((acc, curr) => { return `${acc}${curr}` }, '') | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from functools import reduce | |
def fizzbuzziness(num): | |
tbl = { 'Fizz': num % 3 == 0, 'Buzz': num % 5 == 0 } | |
trues = { k: v for k, v in tbl.items() if v } | |
return reduce((lambda x, y: x + y), list(trues.keys()), '') |
NewerOlder