Rust Implementation of Problem 836
View source code here on GitHub!
Problem Solution
- pub fn problems::p0836::p0836() -> utils::Answer
1/*
2Project Euler Problem 836
3
4Alright, this was funny
5
6Problem:
7
8Let A be an **affine plane** over a **radically integral local field** F with residual characteristic p.
9
10We consider an **open oriented line section** U of A with normalized Haar measure m.
11
12Define f(m,p) as the maximal possible discriminant of the **jacobian** associated to the
13**orthogonal kernel embedding** of U into A.
14
15Find f(20230401, 57). Give as your answer the concatenation of the first letters of each bolded word.
16*/
17use crate::include::utils::Answer;
18
19pub fn p0836() -> Answer {
20 return Answer::String("aprilfoolsjoke".to_string());
21}