最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

LeetCode 2224. Minimum Number of Operations to Convert Time

2023-05-18 13:11 作者:您是打尖兒還是住店呢  | 我要投稿

You are given two strings?current?and?correct?representing two?24-hour times.

24-hour times are formatted as?"HH:MM", where?HH?is between?00?and?23, and?MM?is between?00?and?59. The earliest 24-hour time is?00:00, and the latest is?23:59.

In one operation you can increase the time?current?by?1,?5,?15, or?60?minutes. You can perform this operation?any?number of times.

Return?the?minimum number of operations?needed to convert?current?to?correct.

?

Example 1:

Input: current = "02:30", correct = "04:35"

Output: 3

Explanation:

We can convert current to correct in 3 operations as follows: - Add 60 minutes to current. current becomes "03:30". - Add 60 minutes to current. current becomes "04:30". - Add 5 minutes to current. current becomes "04:35". It can be proven that it is not possible to convert current to correct in fewer than 3 operations.

Example 2:

Input: current = "11:00", correct = "11:01"

Output: 1

Explanation: We only have to add one minute to current, so the minimum number of operations needed is 1.

?

Constraints:

  • current?and?correct?are in the format?"HH:MM"

  • current <= correct

主要是寫2個函數(shù),一個是將小時轉(zhuǎn)換成分鐘,這樣所有的數(shù)據(jù)都是用分鐘去判斷,

剩下就是判斷調(diào)整的次數(shù),用while循環(huán)即可;(我沒看完題目,這里面current是一定小于correct的,但是代碼里面是加了一層判斷的)

下面是代碼:

Runtime:?1 ms, faster than?94.12%?of?Java?online submissions for?Minimum Number of Operations to Convert Time.

Memory Usage:?40.9 MB, less than?61.03%?of?Java?online submissions for?Minimum Number of Operations to Convert Time.


LeetCode 2224. Minimum Number of Operations to Convert Time的評論 (共 條)

分享到微博請遵守國家法律
玉林市| 清苑县| 遂昌县| 兴宁市| 闻喜县| 昌乐县| 崇义县| 丹巴县| 宝坻区| 长子县| 临邑县| 西峡县| 富民县| 基隆市| 左权县| 老河口市| 宝坻区| 黔南| 长阳| 行唐县| 安平县| 皋兰县| 乌兰察布市| 平塘县| 嵩明县| 定南县| 中宁县| 喀喇沁旗| 桂平市| 三门县| 大庆市| 扎兰屯市| 南京市| 巴林右旗| 珠海市| 太康县| 商河县| 砀山县| 安国市| 东阳市| 大化|