It says here you can do fizzbuzz without a modulus operator?

>It says here you can do fizzbuzz without a modulus operator?

Attached: Job-interview-300.jpg (300x300, 51K)

> and it also says here that you can make your posts have certain post numbers too?

Hire me and I'll show you the solution.

Sure thing sir.

We have a whiteboard there you can show it now.

Attached: bossman.jpg (300x300, 22K)

> we'll call you.

Sure. However since my solution is patented, I'l need you to sign this paper beforehand
*pulls out paper*
*slides it towards you*

*beckons*

Attached: Whiteboard.jpg (1500x1500, 168K)

>Right so I'll just make an int...
>And I'd probably want an array too, so I'll make one...
>Can I use C#?
>Oh that won't compile? Okay...
>For loop and...
>Just XML this over here...

Attached: 1537559963378.jpg (540x360, 25K)

Hi sir I haven't heard anything back from you it has been 2 weeks. I swear I know how to get repeating digits.

let me just cd.. into my code folder
cd..
cd..
cd code
pwd
cd..
cd ..

zipWith max mold $ map show [1..]
where mold = cycle $ ((++) reverse) ["","","Fizz","","Buzz","Fizz",""] ++ ["FizzBuzz"]

you're HIRED! see you on monday.

>sure thing, boss
console.log("1
2
fizz
4
buzz
fizz
7
8
fizz
buzz
11
fizz
13
14
fizzbuzz
16
17
fizz
19
buzz
fizz
22
23
fizz
buzz
26
fizz
28
29
fizzbuzz
31
32
fizz
34
buzz
fizz
37
38
fizz
buzz
41
fizz
43
44
fizzbuzz
46
47
fizz
49
buzz
fizz
52
53
fizz
buzz
56
fizz
58
59
fizzbuzz
61
62
fizz
64
buzz
fizz
67
68
fizz
buzz
71
fizz
73
74
fizzbuzz
76
77
fizz
79
buzz
fizz
82
83
fizz
buzz
86
fizz
88
89
fizzbuzz
91
92
fizz
94
buzz
fizz
97
98
fizz
buzz");

>998

You're just not a culture fit.


▲▲

fizz buzz▲
fizzbuzz▲▲

>Uncaught SyntaxError: Invalid or unexpected token
rip

int mod(int a, int b) {

int r = a / b; // truncated division

return (a - r*b);

}

>thread scatters after an actual solution gets posted

this is for women only. you are a a men so you have to do things better.

Triggered incels detetcted.

Attached: smug_klossy.jpg (4005x6007, 788K)

We'll be in touch.

Attached: 1512956287469.jpg (605x685, 77K)

Substract 15 until remainer is >1.
If 0 then fizzbuzz

Else substract 5 until remainer is >1.
If 0 then buzz

Else with 3
Fizz

Else
Number

Is this F#?

It always starts with a 1? In that case you can use an inner loop I guess.

int moduloNotModulo(int a, int b) {
return a - int(a / b) * b;
}

`yup

Just write something that finds the remainder yourself. Alternatively just keep adding 3's and 5's

It's easy to solve with just addition.

looks like haskell