Skip to content

Commit e8ba345

Browse files
committed
"Posix 표준 준수"
1 parent 267674e commit e8ba345

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

contains-duplicate/ymir0916.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ public boolean containsDuplicate(int[] nums) {
1717
}
1818
return false;
1919
}
20-
}
20+
}

top-k-frequent-elements/ymir0916.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ public int[] topKFrequent(int[] nums, int k) {
2424
.mapToInt(Integer::intValue)
2525
.toArray();
2626
}
27-
}
27+
}

two-sum/ymir0916.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ public int[] twoSum(int[] nums, int target) {
1515
}
1616
return new int[]{};
1717
}
18-
}
18+
}

0 commit comments

Comments
 (0)