You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dictionary<int, int>allStars=client.GetAllStars(); // all user's achieved stars
59
-
intthisYearStars=client.GetThisYearStars(); // user's achieved stars from initialized year
65
+
Dictionary<int, int>allStars=client.GetAllStars(); // all user's achieved stars (key = year, value = stars)
60
66
```
61
67
62
68
<br>
63
69
64
70
## Submit answer
71
+
65
72
```csharp
66
73
boolsucceeded=client.SubmitAnswer(intlevel, objectanswer); // submits answer to initialized year and day, returns true if answer is correct
67
74
```
68
75
69
76
<br><br>
70
77
71
-
> credits to:<br>
72
-
> [Max](https://github.com/Mqxx) - markdown info icons<br>
73
-
> [Monday Morning Haskell](https://mmhaskell.com/) - documentation on how to obtaining session cookie<br>
74
-
> [Developer.Mozilla](https://developer.mozilla.org) - documentation on how to name Regex groups
78
+
> credits to:<br> > [Max](https://github.com/Mqxx) - markdown info icons<br> > [Monday Morning Haskell](https://mmhaskell.com/) - documentation on how to obtaining session cookie<br> > [Developer.Mozilla](https://developer.mozilla.org) - documentation on how to name Regex groups
0 commit comments