Skip to content

Commit 86537d2

Browse files
authored
Initial Upload of files
Initial Upload of files
1 parent acd3b8e commit 86537d2

31 files changed

+3758
-0
lines changed

Coderbyte.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.31729.503
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Coderbyte", "Coderbyte\Coderbyte.csproj", "{62D5D86C-2B42-427B-9CBF-F8C6A1087561}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{62D5D86C-2B42-427B-9CBF-F8C6A1087561}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{62D5D86C-2B42-427B-9CBF-F8C6A1087561}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{62D5D86C-2B42-427B-9CBF-F8C6A1087561}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{62D5D86C-2B42-427B-9CBF-F8C6A1087561}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {93EABDC9-CD70-488D-989F-E3FDE5E53786}
24+
EndGlobalSection
25+
EndGlobal

Coderbyte/ASorter.cs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System;
2+
3+
namespace Coderbyte
4+
{
5+
class ASorter
6+
{
7+
public static string AlphabetSorter(string data)
8+
{
9+
char[] CharArray = data.ToCharArray();
10+
Array.Sort(CharArray);
11+
12+
return new string(CharArray);
13+
}
14+
15+
16+
17+
}
18+
}

Coderbyte/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
5+
</startup>
6+
</configuration>

Coderbyte/Coderbyte.csproj

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{62D5D86C-2B42-427B-9CBF-F8C6A1087561}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<RootNamespace>Coderbyte</RootNamespace>
10+
<AssemblyName>Coderbyte Examples</AssemblyName>
11+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>false</Deterministic>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<PlatformTarget>AnyCPU</PlatformTarget>
18+
<DebugSymbols>true</DebugSymbols>
19+
<DebugType>full</DebugType>
20+
<Optimize>false</Optimize>
21+
<OutputPath>bin\Debug\</OutputPath>
22+
<DefineConstants>DEBUG;TRACE</DefineConstants>
23+
<ErrorReport>prompt</ErrorReport>
24+
<WarningLevel>4</WarningLevel>
25+
</PropertyGroup>
26+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27+
<PlatformTarget>AnyCPU</PlatformTarget>
28+
<DebugType>pdbonly</DebugType>
29+
<Optimize>true</Optimize>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DefineConstants>TRACE</DefineConstants>
32+
<ErrorReport>prompt</ErrorReport>
33+
<WarningLevel>4</WarningLevel>
34+
</PropertyGroup>
35+
<PropertyGroup>
36+
<ApplicationIcon>mortarboard.ico</ApplicationIcon>
37+
</PropertyGroup>
38+
<ItemGroup>
39+
<Reference Include="System" />
40+
<Reference Include="System.Core" />
41+
<Reference Include="System.Xml.Linq" />
42+
<Reference Include="System.Data.DataSetExtensions" />
43+
<Reference Include="Microsoft.CSharp" />
44+
<Reference Include="System.Data" />
45+
<Reference Include="System.Deployment" />
46+
<Reference Include="System.Drawing" />
47+
<Reference Include="System.Net.Http" />
48+
<Reference Include="System.Windows.Forms" />
49+
<Reference Include="System.Xml" />
50+
</ItemGroup>
51+
<ItemGroup>
52+
<Compile Include="ASorter.cs" />
53+
<Compile Include="engines\BinToDec.cs" />
54+
<Compile Include="engines\ConNumbers.cs" />
55+
<Compile Include="engines\FBuzz.cs" />
56+
<Compile Include="engines\Integer.cs" />
57+
<Compile Include="engines\KConstant.cs" />
58+
<Compile Include="engines\LetterChanger.cs" />
59+
<Compile Include="engines\LongestWord.cs" />
60+
<Compile Include="engines\MParenthesis.cs" />
61+
<Compile Include="engines\NEncoding.cs" />
62+
<Compile Include="engines\PrimeNumber.cs" />
63+
<Compile Include="engines\RVowels.cs" />
64+
<Compile Include="engines\StringToNumber.cs" />
65+
<Compile Include="engines\StringToNumber2.cs" />
66+
<Compile Include="Form1.cs">
67+
<SubType>Form</SubType>
68+
</Compile>
69+
<Compile Include="Form1.Designer.cs">
70+
<DependentUpon>Form1.cs</DependentUpon>
71+
</Compile>
72+
<Compile Include="Program.cs" />
73+
<Compile Include="Properties\AssemblyInfo.cs" />
74+
<Compile Include="engines\QMarks.cs" />
75+
<Compile Include="engines\TSum.cs" />
76+
<Compile Include="engines\SCompression.cs" />
77+
<Compile Include="Utils.cs" />
78+
<EmbeddedResource Include="Form1.resx">
79+
<DependentUpon>Form1.cs</DependentUpon>
80+
</EmbeddedResource>
81+
<EmbeddedResource Include="Properties\Resources.resx">
82+
<Generator>ResXFileCodeGenerator</Generator>
83+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
84+
<SubType>Designer</SubType>
85+
</EmbeddedResource>
86+
<Compile Include="Properties\Resources.Designer.cs">
87+
<AutoGen>True</AutoGen>
88+
<DependentUpon>Resources.resx</DependentUpon>
89+
</Compile>
90+
<None Include="Properties\Settings.settings">
91+
<Generator>SettingsSingleFileGenerator</Generator>
92+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
93+
</None>
94+
<Compile Include="Properties\Settings.Designer.cs">
95+
<AutoGen>True</AutoGen>
96+
<DependentUpon>Settings.settings</DependentUpon>
97+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
98+
</Compile>
99+
</ItemGroup>
100+
<ItemGroup>
101+
<None Include="App.config" />
102+
</ItemGroup>
103+
<ItemGroup>
104+
<Content Include="mortarboard.ico" />
105+
</ItemGroup>
106+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
107+
</Project>

Coderbyte/Form1.Designer.cs

Lines changed: 230 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy