https://github.com/icyjoseph/codejam
Solutions to codeJam Problems
https://github.com/icyjoseph/codejam
algorithm-challenges algorithms codejam google
Last synced: 7 months ago
JSON representation
Solutions to codeJam Problems
- Host: GitHub
- URL: https://github.com/icyjoseph/codejam
- Owner: icyJoseph
- Created: 2018-03-19T07:03:07.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-20T20:39:54.000Z (almost 8 years ago)
- Last Synced: 2025-03-15T03:44:50.896Z (10 months ago)
- Topics: algorithm-challenges, algorithms, codejam, google
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# codeJam
Solutions to codeJam problems from past contests, found at [codeJam.](https://code.google.com/codejam/past-contests)
The `utils.py` file is used to read inputs from CLI, like so:
```
python3 tidy.py example.in
```
If implemented correctly, prints: `example.out`.
## Oversized Pancake Flipper
Taken from the [Qualification Round 2017.](https://code.google.com/codejam/contest/3264486/dashboard)
```
pancake.py
```
## Tidy Numbers
Taken from [Qualification Round 2017.](https://code.google.com/codejam/contest/3264486/dashboard#s=p1)
```
tidy.py
```
## Bathroom Stalls
Taken from [Qualification Round 2017.](https://code.google.com/codejam/contest/3264486/dashboard#s=p2)
```
stalls.py
```
## Steed 2: Cruise Control
Taken from [Round 1B 2017.](https://code.google.com/codejam/contest/8294486/dashboard)
```
horses.py
```
## Counting Sheep
Taken from [Qualification Round 2016.](https://code.google.com/codejam/contest/6254486/dashboard)
```
sheep.py
```
## Revenge of the Pancakes
Taken from [Qualification Round 2016.](https://code.google.com/codejam/contest/6254486/dashboard#s=p1)
```
revenge.py
```