An open API service indexing awesome lists of open source software.

https://github.com/pedroripper/co231


https://github.com/pedroripper/co231

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Algorithms-and-Data-Structures---2018.1
Implementation of some algorithms that I've seen during my Algorithms and Data Structures class

1.celeb:
The Celebrity Problem
In a party of N people, only one person is known to everyone.
Such a person may be present in the party, if yes, that individual doesn’t know anyone in the party.
We can only ask questions like “does A know B? “. Find the stranger (celebrity) in minimum number of questions.

2.candidate:
Check if a candidate won with a majority of votes.