module GetAcDataFromAtCoderProblems

Extended Modules

Defined in:

get_ac_data_from_atcoder_problems.cr

Instance Method Summary

Instance Method Detail

def calc_today_allowed_calorie(user_id : String) : Int64 #

前日に解いた問題のスコアから当日の摂取可能カロリーを返す


[View source]
def calc_tomorrow_allowed_calorie(user_id : String) : Int64 #

当日に解いた問題のスコアから翌日の摂取可能カロリーを返す


[View source]
def get_ac_data(user_id : String, start_time : Int64) : Array(NamedTuple(problem_id: String, point: Int64, year: Int64, month: Int64, day: Int64)) | Nil #

AtCoder ProblemsのAPIから提出データを取得し、解いた問題のidとスコアと日付のNamedTupleを返す 提出データの取得エラーが起きた場合はnilを返す いつからの提出データを取得するかはunix秒(Int64)の引数で指定


[View source]