rename coding project bc I did the wrong one
This commit is contained in:
4
everybody-codes/2025/EveryBodyCodes2025/.gitignore
vendored
Normal file
4
everybody-codes/2025/EveryBodyCodes2025/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
bin
|
||||
obj
|
||||
.idea
|
||||
*.DotSettings*
|
||||
@@ -0,0 +1,22 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "EveryBodyCodes_WrongOne", "EveryBodyCodes_WrongOne\EveryBodyCodes_WrongOne.fsproj", "{18C7585C-4183-4966-8217-A97E0E6200A8}"
|
||||
EndProject
|
||||
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "EveryBodyCodes2025", "EveryBodyCodes2025\EveryBodyCodes2025.fsproj", "{17C27272-7D29-47A0-A3E1-27054D52D77F}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{18C7585C-4183-4966-8217-A97E0E6200A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{18C7585C-4183-4966-8217-A97E0E6200A8}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{18C7585C-4183-4966-8217-A97E0E6200A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{18C7585C-4183-4966-8217-A97E0E6200A8}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{17C27272-7D29-47A0-A3E1-27054D52D77F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{17C27272-7D29-47A0-A3E1-27054D52D77F}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{17C27272-7D29-47A0-A3E1-27054D52D77F}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{17C27272-7D29-47A0-A3E1-27054D52D77F}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
@@ -0,0 +1,12 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.fs"/>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@@ -1,14 +1,2 @@
|
||||
// For more information see https://aka.ms/fsharp-console-apps
|
||||
open System
|
||||
open EveryBodyCodes2025.QuestOne
|
||||
|
||||
[<EntryPoint>]
|
||||
let main argv =
|
||||
//printfn $"{part1Answer}"
|
||||
//printfn $"{test2}"
|
||||
printfn $"part 2 answer {part2Answer}"
|
||||
//let testAnswer = part2Answer' "Inputs/Q01_P02a.txt"
|
||||
//printfn $"part 2 answer test 1 {testAnswer}"
|
||||
//printfn $"part 2 answer test 1 11051340 expected"
|
||||
0
|
||||
|
||||
printfn "Hello from F#"
|
||||
@@ -0,0 +1,24 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<RootNamespace>EveryBodyCodes2025</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Include="Inputs\Q01_P01.txt">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Inputs\Q01_P02.txt">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Inputs\Q01_P02a.txt">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Compile Include="QuestOne.fs" />
|
||||
<Compile Include="QuestOne_ai.fs" />
|
||||
<Compile Include="Program.fs" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,14 @@
|
||||
// For more information see https://aka.ms/fsharp-console-apps
|
||||
open System
|
||||
open EveryBodyCodes2025.QuestOne
|
||||
|
||||
[<EntryPoint>]
|
||||
let main argv =
|
||||
//printfn $"{part1Answer}"
|
||||
//printfn $"{test2}"
|
||||
printfn $"part 2 answer {part2Answer}"
|
||||
//let testAnswer = part2Answer' "Inputs/Q01_P02a.txt"
|
||||
//printfn $"part 2 answer test 1 {testAnswer}"
|
||||
//printfn $"part 2 answer test 1 11051340 expected"
|
||||
0
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user