嗨,我是 Fly,用 Ruby 寫 Chatbot 並挑戰30天分享心得
為確保不會沒靈感
每日含 Ruby 解題增加內容
https://www.hackerrank.com/domains/tutorials/30-days-of-code
亦錄下影片供參考
請專家前輩們多多指教!
聽說文章有300字限制,但影片分類似乎沒有,哈哈,還是充實一下內容好了
以下是使用 Ruby 解 hackerrank 題目之心得
ARGF.read 可讀取鍵盤輸入
# Read a full line of input from stdin and save it to our dynamically typed variable, input_string.
input_string = ARGF.read
# Print a string literal saying "Hello, World." to stdout.
puts "Hello, World."
# TODO: Write a line of code here that prints the contents of input_string to stdout.
puts input_string