-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelper.cs
46 lines (38 loc) · 1.23 KB
/
Helper.cs
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
44
45
46
using System.Text;
using BitMiracle.Docotic;
namespace NativeAotBenchmarks
{
static class Helper
{
public static void ApplyDocoticLicense()
{
// NOTE:
// Without a license, the library won't allow you to create or read PDF documents.
// To get a free time-limited license key, use the form on
// https://bitmiracle.com/pdf-library/download
LicenseManager.AddLicenseData("PUT-LICENSE-HERE");
}
public static string CompressString(string s)
{
StringBuilder compressed = new(s.Length);
for (int i = 0; i < s.Length; ++i)
{
char c = s[i];
for (int j = i + 1; j <= s.Length; ++j)
{
if (j == s.Length || s[j] != c)
{
compressed.Append(c + $"{j - i}");
i = j - 1;
if (compressed.Length > s.Length)
return s;
break;
}
}
}
if (compressed.Length <= s.Length)
return compressed.ToString();
return s;
}
}
}