All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g1201_1300.s1227_airplane_seat_assignment_probability.Solution.kt Maven / Gradle / Ivy

There is a newer version: 1.32
Show newest version
package g1201_1300.s1227_airplane_seat_assignment_probability

// #Medium #Dynamic_Programming #Math #Brainteaser #Probability_and_Statistics
// #2023_06_09_Time_135_ms_(100.00%)_Space_33.3_MB_(100.00%)

class Solution {
    fun nthPersonGetsNthSeat(n: Int): Double {
        return if (n == 1) {
            1.0
        } else 0.5
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy