Science Score: 44.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
    Found .zenodo.json file
  • DOI references
  • Academic links in README
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (0.2%) to scientific vocabulary
Last synced: 6 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: bhaves19h
  • Language: C++
  • Default Branch: main
  • Size: 570 KB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created over 1 year ago · Last pushed 7 months ago
Metadata Files
Citation

Owner

  • Login: bhaves19h
  • Kind: user

Citation (citations GFG)

class Solution {
  public:
    // Function to find hIndex
    int hIndex(vector<int>& citations) {
        // code here
    sort(citations.rbegin(), citations.rend()); // Sort in descending order
    int h = 0;
    for (int i = 0; i < citations.size(); ++i) {
        if (citations[i] >= i + 1)
            h = i + 1;
        else
            break;
    }
    return h;

    }
};

GitHub Events

Total
  • Push event: 214
  • Create event: 2
Last Year
  • Push event: 214
  • Create event: 2