Introduction

Welcome to our new coding practice lesson! We have an interesting problem in this unit that centers around data from a social networking app. The challenge involves processing logs from this app and extracting useful information from them. This task will leverage your skills in string manipulation, working with timestamps, and task subdivision. Let's get started!

Task Statement

Imagine a social networking application that allows users to form groups. Each group has a unique ID ranging from 1 to n, where n is the total number of groups. Interestingly, the app keeps track of when a group is created and deleted, logging all these actions in a string.

The task before us is to create a Kotlin function named analyzeLogs. This function will take as input a string of logs and output a List<String> representing the groups with the longest lifetime. Each string in the list contains two items separated by a space: the group ID and the group's lifetime. By 'lifetime,' we mean the duration from when the group was created until its deletion. If a group has been created and deleted multiple times, the lifetime is the total sum of those durations. If multiple groups have the same longest lifetime, the function should return all such groups in ascending order of their IDs.

For example, if we have a log string as follows: "1 create 09:00, 2 create 10:00, 1 delete 12:00, 3 create 13:00, 2 delete 15:00, 3 delete 16:00", the function will return: ["2 05:00"].

Solution Building: Step 1

First, we will split the input string into individual operations. In Kotlin, string manipulation can be handled using the split() and toList() methods.

fun analyzeLogs(logs: String): List<String> {
    val logList = logs.split(", ").toList()
Solution Building: Step 2

Next, we delve deeper into the logs. For each logged group operation in the string, we need to parse its components. These include the group ID, the type of operation (create or delete), and the time of action.

fun analyzeLogs(logs: String): List<String> {
    val logList = logs.split(", ").toList()

    val timeDict = mutableMapOf<Int, Pair<Int, Int>>()  // Map to record the creation moment for each group in minutes
    val lifeDict = sortedMapOf<Int, Int>()  // SortedMap to record the lifetime for each group in minutes

    for (log in logList) {
        val parts = log.split(" ")
        val groupId = parts[0].toInt()
        val action = parts[1]
        val time = parts[2]
Solution Building: Step 3

Now that we can identify the action performed on each group and when, it's time to process these details. We convert the group ID into an integer and the timestamp into minutes from the start of the day. If the log entry marks a create action, we register the time of creation in a map under the group ID. If the entry signals delete, we calculate the lifetime of the group and store it in another map.

fun analyzeLogs(logs: String): List<String> {
    val logList = logs.split(", ").toList()

    val timeDict = mutableMapOf<Int, Pair<Int, Int>>()  // Map to record the creation moment for each group in minutes
    val lifeDict = sortedMapOf<Int, Int>()  // SortedMap to record the lifetime for each group in minutes

    for (log in logList) {
        val parts = log.split(" ")
        val groupId = parts[0].toInt()
        val action = parts[1]
        val time = parts[2]

        // Parsing the time from HH:MM format
        val (hour, minute) = time.split(":").map { it.toInt() }
        val currentTime = hour * 60 + minute  // Time in minutes from start of day

        if (action == "create") {
            timeDict[groupId] = Pair(hour, minute)
        } else {
            timeDict[groupId]?.let {
                // If the group is deleted, calculate its entire lifetime and remove it from the creation records.
                val creationTime = it.first * 60 + it.second
                val lifetime = currentTime - creationTime
                lifeDict[groupId] = lifeDict.getOrDefault(groupId, 0) + lifetime
                timeDict.remove(groupId)
            }
        }
    }
Solution Building: Step 4
Lesson Summary

Bravo! You have successfully navigated a non-trivial log analysis problem and worked with timestamped data, a real-world data type in Kotlin. Using Kotlin's string methods and collections, you transformed raw strings into meaningful data. Real-life coding often involves accurately understanding, dissecting, and analyzing data, and this unit's lesson has given you practical experience in that regard. Now, let's apply these new learnings to more practice challenges. Off to the races you go!

Sign up
Join the 1M+ learners on CodeSignal
Be a part of our community of 1M+ users who develop and demonstrate their skills on CodeSignal