Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
may i know where does
plusDot
come from?I got it, thank you!
This comment is hidden because it contains spoiler information about the solution
maybe the equation result should be
n > log(window/h) / log(bounce)
? Sincebounce < 1
, thenlog(bounce) < 0
. So we useceil
here.This comment is hidden because it contains spoiler information about the solution
thx for your reply, but the code has already checked whether strlen(number) == frmt_len, input with incorrect length cannot pass the condition. May anyone explain this to me please?
may i know why %1s is used at the sscanf function? Thank you.