Skip to content

Instantly share code, notes, and snippets.

@Restar9
Restar9 / agh2.js
Last active June 21, 2017 04:19
天鳳牌譜解析用コード
///////////////////////////////////////////////////////////////////
// TENHOU.NET (C)C-EGG http://tenhou.net/
//-----------------------------------------------------------------
////////////////////////////////////////////////////
//ノー和了ノー放銃の順位分布を求める//
///////////////////////////////////////////////
var we=window.external;
///////////////////////////////////////////////////////////////////
@Restar9
Restar9 / fizzbuzz.rb
Created April 7, 2014 02:49
FizzBuzz
for i in 1..100 do
if i%3==0 then puts "fizz" end
if i%5==0 then puts "buzz" end
if i%3!=0 && i%5!=0 then puts i end
end
div{
color:red
}