competitive-programming-problem-solutions

Competitive Programming (CP) is a mind sport with one or more logical problems to be solved using programming. Each problem has some specifications which need to be satisfied to solve the problem. The participants (known as competitive programmers) are required to solve these problems by writing efficient code. If you are interested in competitive

https://github.com/abrahamshimekt/competitive-programming-problem-solutions

Science Score: 18.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
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (2.3%) to scientific vocabulary

Keywords

codeforces competitive-programming geeksforgeeks hackerrank leetcode topcoder
Last synced: 6 months ago · JSON representation ·

Repository

Competitive Programming (CP) is a mind sport with one or more logical problems to be solved using programming. Each problem has some specifications which need to be satisfied to solve the problem. The participants (known as competitive programmers) are required to solve these problems by writing efficient code. If you are interested in competitive

Basic Info
  • Host: GitHub
  • Owner: abrahamshimekt
  • Language: Python
  • Default Branch: main
  • Homepage:
  • Size: 1.84 MB
Statistics
  • Stars: 5
  • Watchers: 1
  • Forks: 0
  • Open Issues: 1
  • Releases: 0
Topics
codeforces competitive-programming geeksforgeeks hackerrank leetcode topcoder
Created about 4 years ago · Last pushed about 2 years ago
Metadata Files
Readme Citation

README.md

Competitive Programming

Competitive Programming (CP) is a mind sport with one or more logical problems to be solved using programming. Each problem has some specifications which need to be satisfied to solve the problem. The participants (known as competitive programmers) are required to solve these problems by writing efficient code. If you are interested in competitive programming and want to go further in problem solving, you can reach me and we can discuss on problems. https://www.youtube.com/@abrahamshimekt1

Owner

  • Name: Abraham Shimekt
  • Login: abrahamshimekt
  • Kind: user
  • Location: Addis Ababa
  • Company: AAiT

As an AI enthusiast and Software Engineering student at Addis Ababa Institute of Technology, I'm motivated to collaborate with others to create positive change.

Citation (citations/h_index.py)

class Solution:
    def hIndex(self, citations: List[int]) -> int:
        left =-1
        right = len(citations)
        while right -left > 1:
            mid = left + (right -left)//2
            if len(citations)-mid <= citations[mid]:
                right = mid
            else:
                left = mid
        return len(citations)-right

GitHub Events

Total
Last Year