dailyproblem
Science Score: 31.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic links in README
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Unable to calculate vocabulary similarity
Last synced: 7 months ago
·
JSON representation
·
Repository
Basic Info
- Host: GitHub
- Owner: Inferno-coder
- Language: C++
- Default Branch: main
- Size: 333 KB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Created almost 3 years ago
· Last pushed over 1 year ago
Metadata Files
Citation
Owner
- Login: Inferno-coder
- Kind: user
- Repositories: 1
- Profile: https://github.com/Inferno-coder
Citation (citations.cpp)
int hIndex(vector<int>& citations) {
// code here\
sort(citations.begin(), citations.end());
int citation = 0;
int n = citations.size();
for(int i= n-1;i>=0;i--)
{
int a = min(citations[i],n-i);
citation = max(citation, a);
}
return citation;
}
GitHub Events
Total
- Push event: 44
Last Year
- Push event: 44