Skip to content

Commit

Permalink
fix(esame 01/2020): fix \n
Browse files Browse the repository at this point in the history
  • Loading branch information
euberdeveloper authored Apr 14, 2021
1 parent 157eee3 commit c5d70a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vuejs/src/schema/data/esame_2020_01.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class B {
void m(int x) { a.m(x); }
public String toString() { return a.toString(); }
}`,
solution: ['x=8']
solution: ['x=8\\n']
},
{
code: `public class Test {
Expand Down Expand Up @@ -77,7 +77,7 @@ class A implements I {
class B extends A implements J {
public int m(String s) { return s.length(); }
}`,
solution: ['18']
solution: ['18\\n']
},
{
code: `import java.util.*;
Expand All @@ -98,7 +98,7 @@ class B extends A implements J {
return (s.length() - a.s.length());
}
}`,
solution: ['3\n8\n11\n']
solution: ['3\\n8\\n11\\n']
},
{
code: `public class Test {
Expand Down Expand Up @@ -137,7 +137,7 @@ class B extends A {
}
class C { }
class D extends C { }`,
solution: ['h']
solution: ['h\\n']
},
{
code: `public class Test {
Expand Down

0 comments on commit c5d70a5

Please sign in to comment.