Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e0ca4b2

Browse files
authoredFeb 26, 2024
Update Solution.java
1 parent 8047f12 commit e0ca4b2

File tree

1 file changed

+1
-0
lines changed
  • src/main/java/g3001_3100/s3005_count_elements_with_maximum_frequency

1 file changed

+1
-0
lines changed
 

‎src/main/java/g3001_3100/s3005_count_elements_with_maximum_frequency/Solution.java

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import java.util.ArrayList;
66
import java.util.List;
77

8+
@SuppressWarnings("java:S135")
89
public class Solution {
910
public int maxFrequencyElements(int[] nums) {
1011
if (nums.length == 1) {

0 commit comments

Comments
 (0)
Please sign in to comment.