Closed AbeEveland closed 4 years ago
using System;
public class Kata { public static int Opposite( int number) { return -number;
}
}
using System; using System.Linq;
public class Kata { public static int PositiveSum(int[] arr) {
return arr.Where(x => x > 0).Sum();
} }
using System;
public static class Kata { public static int summation(int num) { return num*(num+1)/2; } }
Your homework 06 - 04 - Roshambo! was marked: Meets Expectations
“Ring that bell!”
Great work!
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
Part 2
Part 3
Adventure Mode