mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-04 15:01:40 +08:00
国外版
This commit is contained in:
33
算法题(国外版)/angle-between-hands-of-a-clock.html
Normal file
33
算法题(国外版)/angle-between-hands-of-a-clock.html
Normal file
@@ -0,0 +1,33 @@
|
||||
<p>Given two numbers, <code>hour</code> and <code>minutes</code>, return <em>the smaller angle (in degrees) formed between the </em><code>hour</code><em> and the </em><code>minute</code><em> hand</em>.</p>
|
||||
|
||||
<p>Answers within <code>10<sup>-5</sup></code> of the actual value will be accepted as correct.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2019/12/26/sample_1_1673.png" style="width: 300px; height: 296px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> hour = 12, minutes = 30
|
||||
<strong>Output:</strong> 165
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2019/12/26/sample_2_1673.png" style="width: 300px; height: 301px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> hour = 3, minutes = 30
|
||||
<strong>Output:</strong> 75
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 3:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2019/12/26/sample_3_1673.png" style="width: 300px; height: 301px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> hour = 3, minutes = 15
|
||||
<strong>Output:</strong> 7.5
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Constraints:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>1 <= hour <= 12</code></li>
|
||||
<li><code>0 <= minutes <= 59</code></li>
|
||||
</ul>
|
Reference in New Issue
Block a user