LeetCode in Kotlin

1507. Reformat Date

Easy

Given a date string in the form Day Month Year, where:

Convert the date string to the format YYYY-MM-DD, where:

Example 1:

Input: date = “20th Oct 2052”

Output: “2052-10-20”

Example 2:

Input: date = “6th Jun 1933”

Output: “1933-06-06”

Example 3:

Input: date = “26th May 1960”

Output: “1960-05-26”

Constraints:

Solution

class Solution {
    fun reformatDate(date: String): String {
        val sb = StringBuilder()
        val map: MutableMap<String, String> = HashMap()
        map["Jan"] = "01"
        map["Feb"] = "02"
        map["Mar"] = "03"
        map["Apr"] = "04"
        map["May"] = "05"
        map["Jun"] = "06"
        map["Jul"] = "07"
        map["Aug"] = "08"
        map["Sep"] = "09"
        map["Oct"] = "10"
        map["Nov"] = "11"
        map["Dec"] = "12"
        sb.append(date.substring(date.length - 4))
        sb.append('-')
        sb.append(map[date.substring(date.length - 8, date.length - 5)])
        sb.append('-')
        if (Character.isDigit(date[1])) {
            sb.append(date, 0, 2)
        } else {
            sb.append('0')
            sb.append(date[0])
        }
        return sb.toString()
    }
}
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy