Sort by

recency

|

56 Discussions

|

  • + 0 comments
    def solve(balls):
        r = 0
        n = len(balls)
        for i in range(0, n):
            # in half of the combinations (2**(n)), each ball is not picked
            # so we can compute its aggregated contribution to the final value as
    				r += 2**(n-1)*balls[i] 
        ev = r/(2**n) # expected value
        return "%.1f"%ev
    `
    
  • + 0 comments

    For a unique birthday gift, consider something personalized or an experience they'll never forget. It shows thoughtfulness and makes the day extra special!

    Also, have you checked out the free gifts on Temu. They have some amazing deals and offers that could be perfect for this occasion!

  • + 0 comments

    For a unique birthday gift, consider something personalized or an experience they'll never forget. It shows thoughtfulness and makes the day extra special!

    Also, have you checked out the free gifts on Temu They have some amazing deals and offers that could be perfect for this occasion!

  • + 0 comments

    c#

    public static double solve(List balls)

    {
        return Math.Round((balls.Sum())/2.0, 1);
    }
    
  • + 0 comments

    Let b_i be the price written on the ith ball. Let X_i be a random variable such that X_i = b_i if the ith coin toss is heads and X_i = 0 otherwise. The expected value of X_i is E(X_i) = b_i / 2. Let X = X_1 + ... + X_n. The price of the phone is E(X) = E(X_1) + ... + E(X_n) = (b_1 + ... + b_n) / 2.

    Python code:

    return .5 * sum(balls)