Skip to content

Instantly share code, notes, and snippets.

View dspp779's full-sized avatar

Jhih-Jie Chen dspp779

View GitHub Profile
@dspp779
dspp779 / fizzbuzz.rb
Last active September 26, 2016 01:40
SOA hw CODE: Mission FizzBuzz
## write your fizzbuzz method in this file
# see http://en.wikipedia.org/wiki/Fizz_buzz for details on FizzBuzz game
def fizzbuzzify(n)
res = ''
res << 'Fizz' if (n % 3).zero?
res << 'Buzz' if (n % 5).zero?
res.empty? ? n : res
end
def fizzbuzz(size)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
新竹好好吃
冰品甜點
阿宗冰店
葉家大粒粉圓
正宗燒仙草
阿惠冰店(光華二街、西門街)
河堤上的貓
西米露之家
海洋冰城
@dspp779
dspp779 / standford_parser.ipynb
Last active February 9, 2022 11:46
Using Stanford Parser
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.