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
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
Statistics
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 1
- Releases: 0
Topics
Metadata Files
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
- Repositories: 35
- Profile: https://github.com/abrahamshimekt
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