-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathExercise001.cs
More file actions
43 lines (37 loc) · 1.31 KB
/
Exercise001.cs
File metadata and controls
43 lines (37 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System;
using System.Collections.Generic;
using Exercises.Models;
namespace Exercises
{
public class Exercise001
{
public string CapitalizeWord(string word)
{
// Replace the exception statement below with your code!
throw new NotImplementedException();
}
public string GenerateInitials(string firstName, string lastName)
{
// Replace the exception statement below with your code!
throw new NotImplementedException();
}
public double AddVat(double originalPrice, double vatRate)
{
// Replace the exception statement below with your code!
throw new NotImplementedException();
// NB: Look in Exercise001Tests.cs
// There is a test with commented out assertions.
// For an extra challenge, uncomment those assertions and make that test pass too.
}
public string Reverse(string sentence)
{
// Replace the exception statement below with your code!
throw new NotImplementedException();
}
public int CountLinuxUsers(List<User> users)
{
// Replace the exception statement below with your code!
throw new NotImplementedException();
}
}
}