ravenleetcodesolutions

My Solutions for Leetcode Problems, for studying.

https://github.com/ravencunanan/ravenleetcodesolutions

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 publication links
  • 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

My Solutions for Leetcode Problems, for studying.

Basic Info
  • Host: GitHub
  • Owner: RavenCunanan
  • Language: Python
  • Default Branch: main
  • Homepage:
  • Size: 200 KB
Statistics
  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created about 1 year ago · Last pushed 7 months ago
Metadata Files
Readme Citation

README.md

Solutions on leetcode problems I have worked on for studying and archiving purposes.

Owner

  • Name: Raven Cunanan
  • Login: RavenCunanan
  • Kind: user
  • Location: Vallejo,California

Education: California State University Sacramento Bachelor of Sciences, Computer Science (December 2022)

Citation (citations.py)

class Solution(object):
    def hIndex(self, citations):
        citations.sort(reverse=True)
        for i, c in enumerate(citations):
            if c < i + 1:
                return i
        return len(citations)

GitHub Events

Total
  • Watch event: 1
  • Push event: 87
  • Create event: 1
Last Year
  • Watch event: 1
  • Push event: 87
  • Create event: 1