Skip to content

Commit a4b1e96

Browse files
committed
Runtime: 5 ms (Top 17.94%) | Memory: 6.2 MB (Top 15.94%)
1 parent c80325b commit a4b1e96

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/T/The kth Factor of n/The kth Factor of n.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 5 ms (Top 17.94%) | Memory: 6.2 MB (Top 15.94%)
12
class Solution {
23
public:
34
int kthFactor(int n, int k) {
@@ -10,4 +11,4 @@ class Solution {
1011
if(k > sol.size()) return -1;
1112
return sol[k - 1];
1213
}
13-
};
14+
};

0 commit comments

Comments
 (0)