AbeEveland / assignments

0 stars 0 forks source link

06 - 04 - Roshambo! #25

Closed AbeEveland closed 4 years ago

AbeEveland commented 4 years ago

Create a Roshambo (Rock-Paper-Scissors) game.

Objectives

Background

See the Wikipedia page about Rock, Paper, Scissors

How to get started

Explorer Mode

Part 1

NOTE: Complete part 1 before moving on to part 2

Part 2

Part 3

Adventure Mode

AbeEveland commented 4 years ago

using System;

public class Kata { public static int Opposite( int number) { return -number;

    }
}
AbeEveland commented 4 years ago

using System; using System.Linq;

public class Kata { public static int PositiveSum(int[] arr) {

return arr.Where(x => x > 0).Sum();

} }

AbeEveland commented 4 years ago

using System;

public static class Kata { public static int summation(int num) { return num*(num+1)/2; } }

AbeEveland commented 4 years ago

https://github.com/AbeEveland/roshambo

AbeEveland commented 4 years ago

https://github.com/AbeEveland/roshambo

AbeEveland commented 4 years ago

Your homework 06 - 04 - Roshambo! was marked: Meets Expectations

Ring that bell!

“Ring that bell!”

gstark commented 4 years ago

Great work!