Class Solution
java.lang.Object
g0801_0900.s0825_friends_of_appropriate_ages.Solution
825 - Friends Of Appropriate Ages.<p>Medium</p>
<p>There are <code>n</code> persons on a social media website. You are given an integer array <code>ages</code> where <code>ages[i]</code> is the age of the <code>i<sup>th</sup></code> person.</p>
<p>A Person <code>x</code> will not send a friend request to a person <code>y</code> (<code>x != y</code>) if any of the following conditions is true:</p>
<ul>
<li><code>age[y] <= 0.5 * age[x] + 7</code></li>
<li><code>age[y] > age[x]</code></li>
<li><code>age[y] > 100 && age[x] < 100</code></li>
</ul>
<p>Otherwise, <code>x</code> will send a friend request to <code>y</code>.</p>
<p>Note that if <code>x</code> sends a request to <code>y</code>, <code>y</code> will not necessarily send a request to <code>x</code>. Also, a person will not send a friend request to themself.</p>
<p>Return <em>the total number of friend requests made</em>.</p>
<p><strong>Example 1:</strong></p>
<p><strong>Input:</strong> ages = [16,16]</p>
<p><strong>Output:</strong> 2</p>
<p><strong>Explanation:</strong> 2 people friend request each other.</p>
<p><strong>Example 2:</strong></p>
<p><strong>Input:</strong> ages = [16,17,18]</p>
<p><strong>Output:</strong> 2</p>
<p><strong>Explanation:</strong> Friend requests are made 17 -> 16, 18 -> 17.</p>
<p><strong>Example 3:</strong></p>
<p><strong>Input:</strong> ages = [20,30,100,110,120]</p>
<p><strong>Output:</strong> 3</p>
<p><strong>Explanation:</strong> Friend requests are made 110 -> 100, 120 -> 110, 120 -> 100.</p>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>n == ages.length</code></li>
<li><code>1 <= n <= 2 * 10<sup>4</sup></code></li>
<li><code>1 <= ages[i] <= 120</code></li>
</ul>
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
numFriendRequests
public int numFriendRequests(int[] ages)
-