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

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

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
```