Search Results

1
vote

What is your solution to the FizzBuzz problem?

57 Chars in MUMPS: F I=1:1:100 S A=I#3,B=I#5 W:A&B I W:'A "Fizz" W:'B "Buzz" …
1
vote

Factorial Algorithms in different languages

In MUMPS: fact(N) N F,I S F=1 F I=2:1:N S F=F*I QUIT F Or, if you're a fan of indirection: fact(N) N F,I S F=1 F I=2:1:N S F=F_"*"_I QUIT …
2
votes

Code Golf: Leibniz formula for Pi

Here's a solution in MUMPS. pi(N) N X,I S X=1 F I=3:4:N-2 S X=X-(1/I)+(1/(I+2)) Q 4*X Parameter N indicates how many repeated fractions to use. That is, if you …