0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CodilityのTrainingを解いてみた その5

Posted at

問題 FrogJmp

  • 使用言語:Swift3

ソースコード

public func solution3_2(_ X : Int, _ Y : Int, _ D : Int) -> Int {
        let shou = (Y - X) / D
        let doubleShou = (Double)(Y - X) / (Double)(D)
        return doubleShou - (Double)(shou) == 0.0 ? shou : shou + 1
    }
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?